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:
tjr 2003-08-23 13:05:13 +00:00
parent f55f06a8e7
commit 52c7b39fff

View File

@ -1,7 +1,7 @@
/* $FreeBSD$ */
#define iprintf(ident,args...) do { printf("%-" # ident "s", ""); \
printf(# args);}while(0)
printf(args);}while(0)
extern int verbose;