Module Name: src
Committed By: dholland
Date: Mon Jan 30 18:50:45 UTC 2012
Modified Files:
src/external/bsd/mdocml/dist: roff.c
Log Message:
Fix broken build by laundering const. hi joerg
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/mdocml/dist/roff.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/mdocml/dist/roff.c
diff -u src/external/bsd/mdocml/dist/roff.c:1.6 src/external/bsd/mdocml/dist/roff.c:1.7
--- src/external/bsd/mdocml/dist/roff.c:1.6 Mon Jan 30 17:03:01 2012
+++ src/external/bsd/mdocml/dist/roff.c Mon Jan 30 18:50:45 2012
@@ -574,7 +574,7 @@ roff_parsetext(char *p)
/* Skip over escapes. */
p++;
esc = mandoc_escape
- ((const char **)&p, NULL, NULL);
+ ((const char **)/*XXX*/(void *)&p, NULL, NULL);
if (ESCAPE_ERROR == esc)
break;
continue;