diff --git a/ChangeLog b/ChangeLog index 2495e5bc47..116929d9db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Jul 26 05:54:54 2014 Eric Wong + + * symbol.c (dsymbol_check): remove unneeded semi-colon + Fri Jul 25 14:07:27 2014 Koichi Sasada * gc.c: change objspace::rgengc::parent_object_is_old (boolean) diff --git a/symbol.c b/symbol.c index f82044a98e..5089d8f0f6 100644 --- a/symbol.c +++ b/symbol.c @@ -414,7 +414,7 @@ dsymbol_check(const VALUE sym) if (st_delete(global_symbols.str_id, (st_data_t *)&fstr, NULL) == 0) { rb_bug("can't remove fstr from str_id (%s)", RSTRING_PTR(fstr)); - }; + } if (st_delete(global_symbols.id_str, (st_data_t *)&sym, NULL) == 0) { rb_bug("can't remove sym from id_sym (%s)", RSTRING_PTR(fstr)); }