summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJun Hiroe <[email protected]>2014-05-17 00:52:00 +0900
committerJun Hiroe <[email protected]>2014-05-17 00:52:00 +0900
commit0388e373d050083fadece5bbd5cf5cf4de0374ad (patch)
treea2f423ed42c03fc74d1f8feaba92b4e2d899a999 /src
parent13db4da204d2bedec4c0c5de939e662a44d477a6 (diff)
downloadmruby-0388e373d050083fadece5bbd5cf5cf4de0374ad.tar.gz
mruby-0388e373d050083fadece5bbd5cf5cf4de0374ad.zip
Delete unnecessary semicolon
Diffstat (limited to 'src')
-rw-r--r--src/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proc.c b/src/proc.c
index 443734da0..d4fe86680 100644
--- a/src/proc.c
+++ b/src/proc.c
@@ -91,7 +91,7 @@ mrb_proc_copy(struct RProc *a, struct RProc *b)
a->body = b->body;
if (!MRB_PROC_CFUNC_P(a)) {
a->body.irep->refcnt++;
- };
+ }
a->target_class = b->target_class;
a->env = b->env;
}