add a space after C reserved words

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-18 23:57:29 +09:00
parent 575d919122
commit 3e24e06b29
8 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ kh_fill_flags(uint8_t *p, uint8_t c, size_t len)
for (k = kh_begin(h); k != kh_end(h); k++) { \
if (kh_exist(h, k)) { \
k2 = kh_put_##name(mrb, h2, kh_key(h, k)); \
if(kh_is_map) kh_value(h2, k2) = kh_value(h, k); \
if (kh_is_map) kh_value(h2, k2) = kh_value(h, k); \
} \
} \
return h2; \