summaryrefslogtreecommitdiffstats
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
commit4006daa96c9ac968f05d5534dcc1162886063ef9 (patch)
tree64122a299bc4623f12c68eb1e23c053a8b83ed74 /catman.c
parent4873b4380a189665bf89eaa8180a9fc5696c5f73 (diff)
downloadmandoc-4006daa96c9ac968f05d5534dcc1162886063ef9.tar.gz
Local variable initialisation.
Diffstat (limited to 'catman.c')
-rw-r--r--catman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/catman.c b/catman.c
index 2f1549a6..26a60215 100644
--- a/catman.c
+++ b/catman.c
@@ -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")))