aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs_printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/xfuncs_printf.c')
-rw-r--r--libbb/xfuncs_printf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c
index a9add8ab2..0ead3b2eb 100644
--- a/libbb/xfuncs_printf.c
+++ b/libbb/xfuncs_printf.c
@@ -336,7 +336,7 @@ void FAST_FUNC xprint_and_close_file(FILE *file)
336 336
337// Die with an error message if we can't malloc() enough space and do an 337// Die with an error message if we can't malloc() enough space and do an
338// sprintf() into that space. 338// sprintf() into that space.
339char* FAST_FUNC xasprintf(const char *format, ...) 339char* xasprintf(const char *format, ...)
340{ 340{
341 va_list p; 341 va_list p;
342 int r; 342 int r;
@@ -552,7 +552,7 @@ void FAST_FUNC selinux_or_die(void)
552#endif 552#endif
553 553
554#if !ENABLE_PLATFORM_MINGW32 554#if !ENABLE_PLATFORM_MINGW32
555int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) 555int ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...)
556{ 556{
557 int ret; 557 int ret;
558 va_list p; 558 va_list p;
@@ -568,7 +568,7 @@ int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, cons
568 return ret; 568 return ret;
569} 569}
570 570
571int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) 571int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...)
572{ 572{
573 va_list p; 573 va_list p;
574 int ret = ioctl(fd, request, argp); 574 int ret = ioctl(fd, request, argp);