1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00

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
This commit is contained in:
uz 2011-01-16 14:19:58 +00:00
parent e2485f100e
commit 1d36b7f1b3

View File

@ -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