From c2b9f9201dfd7bbf88641bc7bb0faafbc3cae8fd Mon Sep 17 00:00:00 2001 From: peavey Date: Mon, 16 Jul 2007 13:39:15 +0000 Subject: [PATCH] Oops, the (*p) check was meant for the inner loop, I blame the vs editor :> git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7450 e03df62e-2008-0410-955e-edbf42e46eb7 --- win/colours.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/colours.h b/win/colours.h index e90782bc9..6a5853c21 100644 --- a/win/colours.h +++ b/win/colours.h @@ -41,14 +41,14 @@ int printf_c(const char * format, ...) int t; int c = 0; const char * p = message; - while ( (*p) && (*p != 0) ) + while (*p != 0) { if (*p == '\033') { // Escape sequence -> copy into the temp buffer, and parse the color. p++; t = 0; - while(*p != 'm') + while ((*p) && (*p != 'm')) { temp[t++] = *p; ++p; -- 2.39.5