Remove silly cast that caused a compiler warning.
This commit is contained in:
parent
1feeda91af
commit
9eea5de11d
1 changed files with 1 additions and 1 deletions
|
@ -1538,7 +1538,7 @@ yyerror(const char *msg)
|
||||||
{
|
{
|
||||||
char newlinebuf[BUFSIZE];
|
char newlinebuf[BUFSIZE];
|
||||||
|
|
||||||
strip_tabs(newlinebuf, (const unsigned char *) linebuf, strlen(linebuf));
|
strip_tabs(newlinebuf, linebuf, strlen(linebuf));
|
||||||
|
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL, "\"%s\", line %d: %s at '%s'",
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "\"%s\", line %d: %s at '%s'",
|
||||||
conffilebuf, lineno + 1, msg, newlinebuf);
|
conffilebuf, lineno + 1, msg, newlinebuf);
|
||||||
|
|
Loading…
Reference in a new issue