fix wrong cast.

This commit is contained in:
christos 2011-10-12 13:44:33 +00:00
parent dfa74ee736
commit 90136e10d7
1 changed files with 1 additions and 3 deletions

View File

@ -571,9 +571,7 @@ roff_parsetext(char *p)
if ('\\' == *p) {
/* Skip over escapes. */
p++;
esc = mandoc_escape
((const char **)&p, NULL, NULL);
esc = mandoc_escape((void *)&p, NULL, NULL);
if (ESCAPE_ERROR == esc)
break;
continue;