aboutsummaryrefslogtreecommitdiffstats
path: root/transact.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-12-12 18:25:51 +0100
committerMatthias Andree <matthias.andree@gmx.de>2010-12-12 18:25:51 +0100
commite9212a2a7f3e4e720129a9422ff177e1c9fddda1 (patch)
tree935045df442b3be4f1ea5e4e54fc2ca6493fad5c /transact.c
parent32b4002531dd09271335f1995bd09934b8d675dd (diff)
downloadfetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.tar.gz
fetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.tar.bz2
fetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.zip
Fix compiler warnings.
Diffstat (limited to 'transact.c')
-rw-r--r--transact.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transact.c b/transact.c
index 1b4e3755..55d25168 100644
--- a/transact.c
+++ b/transact.c
@@ -630,7 +630,7 @@ eoh:
* our terminating combination \n\0, we move backwards to
* make sure that we don't catch some \n\0 stored in the
* decoded part of the message */
- for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--);
+ for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--) { }
if (tcp > line) linelen = tcp - line;
}