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
f55f06a8e7
commit
52c7b39fff
@ -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