Fix broken build by laundering const. hi joerg

This commit is contained in:
dholland 2012-01-30 18:50:45 +00:00
parent 054bec8aef
commit 3190ca5bed
1 changed files with 1 additions and 1 deletions

View File

@ -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;