mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue