diff options
-rw-r--r-- | FICS/network.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/network.c b/FICS/network.c index 843bef5..1b8f822 100644 --- a/FICS/network.c +++ b/FICS/network.c @@ -302,7 +302,7 @@ net_send_string(int fd, char *str, int format) sendme(which, " ", 8 - (con[which].outPos & 7)); con[which].outPos &= ~7; - if (con[which].outPos += 8 >= LINE_WIDTH) + if ((con[which].outPos += 8) >= LINE_WIDTH) con[which].outPos = 0; break; case '\n': |