aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-03-16 12:42:58 +0100
committerTobias Brunner <tobias@strongswan.org>2010-03-16 12:42:58 +0100
commit7b1fc2f7cfd40147d1d74601a41ea6df34131a3b (patch)
tree8c5a4881b00c3744429eadbf16ad6b2cdaa85d67 /src
parenta3316c2b9ffeb17c4a53517eb2b0aedbc5422948 (diff)
downloadstrongswan-7b1fc2f7cfd40147d1d74601a41ea6df34131a3b.tar.bz2
strongswan-7b1fc2f7cfd40147d1d74601a41ea6df34131a3b.tar.xz
Fixing a compiler warning when building with -Wextra.
Diffstat (limited to 'src')
-rw-r--r--src/pluto/lex.c2
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;
}
}