From c69db88340f9a7659ab4faa7fd328a3fb858b72e Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Sat, 23 Aug 2003 13:05:13 +0000 Subject: [PATCH] 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. --- contrib/smbfs/smbutil/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/smbfs/smbutil/common.h b/contrib/smbfs/smbutil/common.h index 2a64af60d4a7..00843943600c 100644 --- a/contrib/smbfs/smbutil/common.h +++ b/contrib/smbfs/smbutil/common.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ #define iprintf(ident,args...) do { printf("%-" # ident "s", ""); \ - printf(# args);}while(0) + printf(args);}while(0) extern int verbose;