]> git.saurik.com Git - bison.git/blobdiff - src/uniqstr.h
tests: syntax-check
[bison.git] / src / uniqstr.h
index 913da39f690caa0a09f438eb433cd1c658749e44..677ecc42968f8142a2f5d4ba38a5839593882eee 100644 (file)
@@ -36,7 +36,7 @@ uniqstr uniqstr_vsprintf (char const *format, ...)
   __attribute__ ((__format__ (__printf__, 1, 2)));
 
 /* Two uniqstr values have the same value iff they are the same.  */
-#define UNIQSTR_EQ(USTR1, USTR2) ((USTR1) == (USTR2))
+#define UNIQSTR_EQ(USTR1, USTR2) (!!((USTR1) == (USTR2)))
 
 /* Compare two uniqstr a la strcmp: negative for <, nul for =, and
    positive for >.  Undefined order, relies on addresses.  */