Remove the # ("stringify") operator from the printf() arguments in
the iprintf macro. It was causing the actual format string and variable names to be written out, instead of substituting the values of the variables into the format string.
This commit is contained in:
parent
3944d0ff35
commit
c69db88340
@ -1,7 +1,7 @@
|
||||
/* $FreeBSD$ */
|
||||
|
||||
#define iprintf(ident,args...) do { printf("%-" # ident "s", ""); \
|
||||
printf(# args);}while(0)
|
||||
printf(args);}while(0)
|
||||
|
||||
extern int verbose;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user