From: uz Date: Sun, 16 Jan 2011 14:19:58 +0000 (+0000) Subject: Add missing braces in macro definition. No error but could cause one. X-Git-Tag: V2.13.3~552 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1d36b7f1b32433b9a1e7826a9eb834db48871bd0;p=cc65 Add missing braces in macro definition. No error but could cause one. git-svn-id: svn://svn.cc65.org/cc65/trunk@4908 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ca65/token.h b/src/ca65/token.h index 7a85fe4af..c5fe629eb 100644 --- a/src/ca65/token.h +++ b/src/ca65/token.h @@ -277,7 +277,7 @@ INLINE int TokIsSep (enum Token T) return (T == TOK_SEP || T == TOK_EOF); } #else -# define TokIsSep(T) (T == TOK_SEP || T == TOK_EOF) +# define TokIsSep(T) ((T) == TOK_SEP || (T) == TOK_EOF) #endif