fix compile error

This commit is contained in:
take_cheeze
2014-03-01 17:30:47 +09:00
parent 78915f9601
commit 23ef20624c
+1 -1
View File
@@ -136,8 +136,8 @@ kh_fill_flags(uint8_t *p, uint8_t c, size_t len)
} \
khint_t kh_get_##name(mrb_state *mrb, kh_##name##_t *h, khkey_t key) \
{ \
(void)mrb; \
khint_t k = __hash_func(mrb,key) & (h->mask); \
(void)mrb; \
while (!__ac_isempty(h->ed_flags, k)) { \
if (!__ac_isdel(h->ed_flags, k)) { \
if (__hash_equal(mrb,h->keys[k], key)) return k; \