X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=win%2Fcolours.h;h=b44b3d5aebb9796c29db0f4c4d5943c0a5d41216;hb=e97cce71bbc3f4ce46a01fd3e32375a7ef8611d7;hp=e90782bc93c72f88b4ceeb915d3cf312e280704b;hpb=22f03b43c5acc3b912d2d0df894dca16a2c46a91;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/win/colours.h b/win/colours.h index e90782bc9..b44b3d5ae 100644 --- a/win/colours.h +++ b/win/colours.h @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -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;