r1187 - trunk/code/game

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Sep 24 06:01:10 EDT 2007


Author: tma
Date: 2007-09-24 06:01:10 -0400 (Mon, 24 Sep 2007)
New Revision: 1187

Modified:
   trunk/code/game/bg_lib.h
Log:
* Add missing )


Modified: trunk/code/game/bg_lib.h
===================================================================
--- trunk/code/game/bg_lib.h	2007-09-22 20:32:11 UTC (rev 1186)
+++ trunk/code/game/bg_lib.h	2007-09-24 10:01:10 UTC (rev 1187)
@@ -65,7 +65,7 @@
 #define isascii(c)  ((c) > 0 && (c) <= 0x7f)
 #define iscntrl(c)  (((c) >= 0) && (((c) <= 0x1f) || ((c) == 0x7f)))
 #define isdigit(c)  ((c) >= '0' && (c) <= '9')
-#define isgraph(c)  ((c) != ' ' && isprint(c)
+#define isgraph(c)  ((c) != ' ' && isprint(c))
 #define islower(c)  ((c) >=  'a' && (c) <= 'z')
 #define isprint(c)  ((c) >= ' ' && (c) <= '~')
 #define ispunct(c)  (((c) > ' ' && (c) <= '~') && !isalnum(c))




More information about the quake3-commits mailing list