diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-01-03 15:17:20 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-01-03 15:17:20 +0000 |
commit | 4006daa96c9ac968f05d5534dcc1162886063ef9 (patch) | |
tree | 64122a299bc4623f12c68eb1e23c053a8b83ed74 /catman.c | |
parent | 4873b4380a189665bf89eaa8180a9fc5696c5f73 (diff) | |
download | mandoc-4006daa96c9ac968f05d5534dcc1162886063ef9.tar.gz |
Local variable initialisation.
Diffstat (limited to 'catman.c')
-rw-r--r-- | catman.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"))) |