From 7b1fc2f7cfd40147d1d74601a41ea6df34131a3b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 16 Mar 2010 12:42:58 +0100 Subject: [PATCH] Fixing a compiler warning when building with -Wextra. --- src/pluto/lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluto/lex.c b/src/pluto/lex.c index f48d24a54..d5ebdaba9 100644 --- a/src/pluto/lex.c +++ b/src/pluto/lex.c @@ -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; } }