aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-01-10 06:29:00 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-01-10 06:29:00 +0000
commit6719c1661f033ee6a197313c077e571a96ce1359 (patch)
treea4f18b3c969a7a17371c6910ecffe83f54ee8735 /main.c
parent81110a42d3e8acf54bd059afb29098770437d398 (diff)
downloadmandoc-6719c1661f033ee6a197313c077e571a96ce1359.tar.gz
mandoc-6719c1661f033ee6a197313c077e571a96ce1359.tar.zst
mandoc-6719c1661f033ee6a197313c077e571a96ce1359.zip
Initializers for file-scope static variables should be compile-time
constants, and while stderr is a compile-time constant in OpenBSD, Kelvin Sherlock <ksherlock at gmail dot com> reports that it isn't on some other systems, for example on FreeBSD or Linux. So do the initialization by calling mandoc_msg_setoutfile() from main() instead.
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index 22175639..1f738439 100644
--- a/main.c
+++ b/main.c
@@ -1,7 +1,7 @@
-/* $Id: main.c,v 1.316 2019/01/01 08:18:11 schwarze Exp $ */
+/* $Id: main.c,v 1.317 2019/01/10 06:29:00 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2010-2012, 2014-2018 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2010-2012, 2014-2019 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2010 Joerg Sonnenberger <joerg@netbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
@@ -148,6 +148,7 @@ main(int argc, char *argv[])
setprogname(progname);
#endif
+ mandoc_msg_setoutfile(stderr);
if (strncmp(progname, "mandocdb", 8) == 0 ||
strcmp(progname, BINM_MAKEWHATIS) == 0)
return mandocdb(argc, argv);