aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/catman.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2012-01-03 15:17:20 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2012-01-03 15:17:20 +0000
commit59c6499373d4a927a750ab07798c5ec064e08535 (patch)
treef0887f0582866a4ae399e1edfd36d2f02f1429a1 /catman.c
parentd346448c959f7b9855c02917b358cfb0da2525e8 (diff)
downloadmandoc-59c6499373d4a927a750ab07798c5ec064e08535.tar.gz
mandoc-59c6499373d4a927a750ab07798c5ec064e08535.tar.zst
mandoc-59c6499373d4a927a750ab07798c5ec064e08535.zip
Local variable initialisation.
Diffstat (limited to 'catman.c')
-rw-r--r--catman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/catman.c b/catman.c
index e326f814..1d313ea6 100644
--- a/catman.c
+++ b/catman.c
@@ -1,4 +1,4 @@
-/* $Id: catman.c,v 1.9 2011/12/25 17:49:52 kristaps Exp $ */
+/* $Id: catman.c,v 1.10 2012/01/03 15:17:20 kristaps Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -79,7 +79,7 @@ main(int argc, char *argv[])
else
++progname;
- aux = base = NULL;
+ aux = base = conf_file = NULL;
xstrlcpy(buf, "/var/www/cache/man.cgi", MAXPATHLEN);
while (-1 != (ch = getopt(argc, argv, "C:fm:M:o:v")))