From e9212a2a7f3e4e720129a9422ff177e1c9fddda1 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sun, 12 Dec 2010 18:25:51 +0100 Subject: Fix compiler warnings. --- transact.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'transact.c') 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; } -- cgit v1.2.3