diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-17 13:04:38 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-17 13:04:38 +0900 |
| commit | d77e521e9c682a1a8af9560ab5ec06b361b11ddf (patch) | |
| tree | 20f9f31c017fd12821a7afe871ada7d0d44cae63 /src | |
| parent | 274c99c478bda90e9456d8069c0e7b1d933bf2e4 (diff) | |
| parent | 0388e373d050083fadece5bbd5cf5cf4de0374ad (diff) | |
| download | mruby-d77e521e9c682a1a8af9560ab5ec06b361b11ddf.tar.gz mruby-d77e521e9c682a1a8af9560ab5ec06b361b11ddf.zip | |
Merge pull request #2269 from suzukaze/delete-semicolon
Delete unnecessary semicolon
Diffstat (limited to 'src')
| -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; } |
