remove unnecessary trailing comma to remove pre C99 declaration error with -Wdeclaration-after-statement

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-09-30 22:40:55 +09:00
parent 4a55b42984
commit 7a7dcd12e5
+1 -1
View File
@@ -23,7 +23,7 @@ static inline khint_t
sym_hash_func(mrb_state *mrb, mrb_sym s)
{
khint_t h = 0;
size_t i, len = mrb->symtbl[s].len;;
size_t i, len = mrb->symtbl[s].len;
const char *p = mrb->symtbl[s].name;
for (i=0; i<len; i++) {