Fixing a compiler warning when building with -Wextra.

This commit is contained in:
Tobias Brunner 2010-03-16 12:42:58 +01:00
parent a3316c2b9f
commit 7b1fc2f7cf
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ flushline(const char *m)
{
if (m != NULL)
loglog(RC_LOG_SERIOUS, "\"%s\" line %d: %s", flp->filename, flp->lino, m);
do ; while (shift());
do {} while (shift());
return FALSE;
}
}