From 911413e7d7020e429d15de52245e36414ff37a2a Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Mon, 18 Dec 2006 22:01:39 +0000 Subject: [PATCH] r20248: merge 20247 from samba_3_0_24 get rid of warning: value computed is not used (This used to be commit ebe16589cb6c45524b90abe5f9be5e4affa1598e) --- source3/lib/replace/snprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/replace/snprintf.c b/source3/lib/replace/snprintf.c index b38d8dad34a..fcbcdb17e9e 100644 --- a/source3/lib/replace/snprintf.c +++ b/source3/lib/replace/snprintf.c @@ -540,7 +540,7 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in printf("parameter at position %d not used\n", pnum+1); #endif /* eat the parameter */ - va_arg (args, int); + (void)va_arg (args, int); continue; } for (i = 1; i < clist[pnum].num; i++) { -- 2.11.4.GIT