From: Sami Kerola Date: Wed, 2 Nov 2011 18:07:34 +0000 (+0100) Subject: ldattach: convert debug macro to function X-Git-Tag: v2.21-rc1~194^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a134012040d2d9f42398a393a3217e1ad86155b;p=thirdparty%2Futil-linux.git ldattach: convert debug macro to function warning: ISO C does not permit named variadic macros Signed-off-by: Sami Kerola --- diff --git a/sys-utils/ldattach.c b/sys-utils/ldattach.c index 1cbf37396f..e05cefef62 100644 --- a/sys-utils/ldattach.c +++ b/sys-utils/ldattach.c @@ -28,12 +28,6 @@ #include "nls.h" #include "strutils.h" -#define dbg(format, arg...) \ - do { \ - if (debug) \ - fprintf(stderr, "%s:" format "\n", progname, ## arg); \ - } while (0) - #ifndef N_GIGASET_M101 # define N_GIGASET_M101 16 #endif @@ -99,6 +93,22 @@ static const struct ld_table ld_iflags[] = { NULL, 0 } }; +void dbg(char *fmt, ...) +{ + va_list args; + + if (debug == 0) + return; + fflush(NULL); + fprintf(stderr, "%s: ", program_invocation_short_name); + va_start(args, fmt); + vfprintf(stderr, fmt, args); + va_end(args); + fprintf(stderr, "\n"); + fflush(NULL); + return; +} + static int lookup_table(const struct ld_table *tab, const char *str) { const struct ld_table *t; @@ -235,7 +245,7 @@ int main(int argc, char **argv) NULL)) >= 0) { switch (optc) { case 'd': - debug++; + debug = 1; break; case '1': case '2':