variable.c: fix clang integer warning.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-12-08 13:27:10 +09:00
parent 47092ccfa5
commit 0b6b042fe8
+1 -1
View File
@@ -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. */