diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-03-16 12:42:58 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-03-16 12:42:58 +0100 |
commit | 7b1fc2f7cfd40147d1d74601a41ea6df34131a3b (patch) | |
tree | 8c5a4881b00c3744429eadbf16ad6b2cdaa85d67 | |
parent | a3316c2b9ffeb17c4a53517eb2b0aedbc5422948 (diff) | |
download | strongswan-7b1fc2f7cfd40147d1d74601a41ea6df34131a3b.tar.bz2 strongswan-7b1fc2f7cfd40147d1d74601a41ea6df34131a3b.tar.xz |
Fixing a compiler warning when building with -Wextra.
-rw-r--r-- | src/pluto/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |