summaryrefslogtreecommitdiff
path: root/symbol.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-25 20:57:02 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-25 20:57:02 +0000
commit098c9a327f2b31e63d46b1d2fe99022ad0975cec (patch)
tree3f8f4cef1965d490587f545c6752de6259f8c7c8 /symbol.c
parentd4e84dd0bf6ed838f4668811bac547d6e64fa707 (diff)
symbol.c (dsymbol_check): remove unneeded semi-colon
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c2
1 files changed, 1 insertions, 1 deletions
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));
}