summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--symbol.c2
2 files changed, 5 insertions, 1 deletions
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 <e@80x24.org>
+
+ * symbol.c (dsymbol_check): remove unneeded semi-colon
+
Fri Jul 25 14:07:27 2014 Koichi Sasada <ko1@atdot.net>
* 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));
}