summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2016-07-15 19:31:54 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2016-07-15 19:31:54 +0000
commit1b0af85581b890592138c1f4c8f4f10b37d2fede (patch)
tree8cfbe65f60ea86438e4190c726312bd55387f27b /usr.bin/mandoc/main.c
parentcb0b57aacc9a95c6893cf560e628a2a8fd3d9ac4 (diff)
To remove the const qualifier from a pointer to an object - either
because we know it is actually mutable or because we are passing it to a function that doesn't accept a const object but won't actually attempt to modify it - simply casting from (const type *) to (type *) is legal C and clearly expresses the intent. So get rid of the obfuscating UNCONST macro. Basic idea discussed with guenther@.
Diffstat (limited to 'usr.bin/mandoc/main.c')
-rw-r--r--usr.bin/mandoc/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/main.c b/usr.bin/mandoc/main.c
index 34d1ed88179..2bc490207e0 100644
--- a/usr.bin/mandoc/main.c
+++ b/usr.bin/mandoc/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.175 2016/07/15 18:49:53 schwarze Exp $ */
+/* $OpenBSD: main.c,v 1.176 2016/07/15 19:31:53 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2012, 2014-2016 Ingo Schwarze <schwarze@openbsd.org>
@@ -927,7 +927,7 @@ woptions(struct curparse *curp, char *arg)
while (*arg) {
o = arg;
- switch (getsubopt(&arg, UNCONST(toks), &v)) {
+ switch (getsubopt(&arg, (char * const *)toks, &v)) {
case 0:
curp->wstop = 1;
break;