svn commit: r252916 - user/pho/stress2/lib

Peter Holm pho at FreeBSD.org
Sun Jul 7 06:04:44 UTC 2013


Author: pho
Date: Sun Jul  7 06:04:43 2013
New Revision: 252916
URL: http://svnweb.freebsd.org/changeset/base/252916

Log:
  Fix compiler warning.

Modified:
  user/pho/stress2/lib/options.c

Modified: user/pho/stress2/lib/options.c
==============================================================================
--- user/pho/stress2/lib/options.c	Sun Jul  7 04:24:38 2013	(r252915)
+++ user/pho/stress2/lib/options.c	Sun Jul  7 06:04:43 2013	(r252916)
@@ -59,7 +59,7 @@ usage(char *where)
 		" k                   : terminate with SIGHUP + SIGKILL\n"
 		" n                   : no startup delay\n"
 		" v                   : verbose\n";
-	printf(help);
+	printf("%s", help);
 	exit(EX_USAGE);
 }
 


More information about the svn-src-user mailing list