From eb217f73643f4607d9c6a72b0ea228893a0f601a Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 24 Sep 2007 10:01:10 +0000 Subject: [PATCH] * Add missing ) --- code/game/bg_lib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/bg_lib.h b/code/game/bg_lib.h index 0629d7b9..53879c10 100644 --- a/code/game/bg_lib.h +++ b/code/game/bg_lib.h @@ -65,7 +65,7 @@ typedef char * va_list; #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))