diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-12-12 18:25:51 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-12-12 18:25:51 +0100 |
commit | e9212a2a7f3e4e720129a9422ff177e1c9fddda1 (patch) | |
tree | 935045df442b3be4f1ea5e4e54fc2ca6493fad5c /transact.c | |
parent | 32b4002531dd09271335f1995bd09934b8d675dd (diff) | |
download | fetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.tar.gz fetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.tar.bz2 fetchmail-e9212a2a7f3e4e720129a9422ff177e1c9fddda1.zip |
Fix compiler warnings.
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |