[3.0] 83fb1b7 Mark argc, argv as unused in vsc2rst
Tollef Fog Heen
tfheen at varnish-cache.org
Thu Oct 6 11:25:21 CEST 2011
commit 83fb1b73723cebdf836596b72fd98b1f7959ede4
Author: Tollef Fog Heen <tfheen at varnish-software.com>
Date: Wed Sep 21 14:28:11 2011 +0200
Mark argc, argv as unused in vsc2rst
diff --git a/man/vsc2rst.c b/man/vsc2rst.c
index 9b89cce..e6abcf9 100644
--- a/man/vsc2rst.c
+++ b/man/vsc2rst.c
@@ -6,6 +6,8 @@
int main(int argc, char **argv)
{
+ (void)argc;
+ (void)argv;
P("================");
P("varnish-counters");
P("================");
More information about the varnish-commit
mailing list