diff options
| author | Jun Hiroe <[email protected]> | 2014-05-17 00:52:00 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2014-05-17 00:52:00 +0900 |
| commit | 0388e373d050083fadece5bbd5cf5cf4de0374ad (patch) | |
| tree | a2f423ed42c03fc74d1f8feaba92b4e2d899a999 | |
| parent | 13db4da204d2bedec4c0c5de939e662a44d477a6 (diff) | |
| download | mruby-0388e373d050083fadece5bbd5cf5cf4de0374ad.tar.gz mruby-0388e373d050083fadece5bbd5cf5cf4de0374ad.zip | |
Delete unnecessary semicolon
| -rw-r--r-- | src/proc.c | 2 |
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; } |
