Avoid incompatible operand types

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen 2011-02-03 10:59:50 +00:00
parent cc5fe8d459
commit 23fd114fcd

View File

@ -239,7 +239,7 @@ struct vars {
#define NOERR() {if (ISERR()) return;} /* if error seen, return */
#define NOERRN() {if (ISERR()) return NULL;} /* NOERR with retval */
#define NOERRZ() {if (ISERR()) return 0;} /* NOERR with retval */
#define INSIST(c, e) (void)((c) ? 0 : ERR(e)) /* if condition false, error */
#define INSIST(c, e) (void)((c) ? (void)0 : ERR(e)) /* if condition false, error */
#define NOTE(b) (v->re->re_info |= (b)) /* note visible condition */
#define EMPTYARC(x, y) newarc(v->nfa, EMPTY, 0, x, y)