mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
remove unnecessary trailing comma to remove pre C99 declaration error with -Wdeclaration-after-statement
This commit is contained in:
+1
-1
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user