diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-21 09:10:14 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-21 09:10:14 +0900 |
| commit | 1cfd3fb9eb7d53b7f91126169ae48b7c64a8cd3e (patch) | |
| tree | 5d073550eb2f6f9f211496020dc76341d71d01f0 /src | |
| parent | a17fd80eb4d8ed8738aab0a027c40353d52ae070 (diff) | |
| download | mruby-1cfd3fb9eb7d53b7f91126169ae48b7c64a8cd3e.tar.gz mruby-1cfd3fb9eb7d53b7f91126169ae48b7c64a8cd3e.zip | |
remove unnecessary assignment
Diffstat (limited to 'src')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,7 +215,7 @@ cipush(mrb_state *mrb) size_t size = ci - c->cibase; c->cibase = (mrb_callinfo *)mrb_realloc(mrb, c->cibase, sizeof(mrb_callinfo)*size*2); - c->ci = ci = c->cibase + size; + c->ci = c->cibase + size; c->ciend = c->cibase + size * 2; } ci = ++c->ci; |
