variable.c: fix clang integer warning.

parent 47092ccf
......@@ -19,7 +19,7 @@ typedef struct iv_tbl {
} iv_tbl;
#define IV_EMPTY 0
#define IV_DELETED (1<<31)
#define IV_DELETED (1UL<<31)
#define IV_KEY_P(k) (((k)&~((uint32_t)IV_DELETED))!=0)
/* Creates the instance variable table. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment