svn commit: samba r20248 - in branches/SAMBA_3_0/source/lib/replace: .

herb at samba.org herb at samba.org
Mon Dec 18 22:01:40 GMT 2006


Author: herb
Date: 2006-12-18 22:01:39 +0000 (Mon, 18 Dec 2006)
New Revision: 20248

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20248

Log:
merge 20247 from samba_3_0_24
get rid of warning: value computed is not used

Modified:
   branches/SAMBA_3_0/source/lib/replace/snprintf.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/replace/snprintf.c
===================================================================
--- branches/SAMBA_3_0/source/lib/replace/snprintf.c	2006-12-18 21:59:11 UTC (rev 20247)
+++ branches/SAMBA_3_0/source/lib/replace/snprintf.c	2006-12-18 22:01:39 UTC (rev 20248)
@@ -540,7 +540,7 @@
 			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++) {



More information about the samba-cvs mailing list