From 8eb0a4fb3d1007388b5b06d3026795cbaee743d7 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sat, 5 Jul 2008 09:52:33 +0000 Subject: [PATCH] More parantheses to suppress a gcc warning. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@57 13b04d17-f746-0410-82c6-800466cd88b0 --- source/funny.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funny.c b/source/funny.c index 0da00e2..b2e639d 100644 --- a/source/funny.c +++ b/source/funny.c @@ -225,7 +225,7 @@ void print_funny_names(char *line) { *buffer = 0; - while (t = next_arg(line, &line)) { + while ((t = next_arg(line, &line))) { char *nick; char *nick_format; char nick_buffer[BIG_BUFFER_SIZE];