diff options
| author | Jun Hiroe <[email protected]> | 2013-07-15 23:00:54 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2013-07-15 23:17:12 +0900 |
| commit | 8e42868600e7adcdc5665ff9b0244150296960d6 (patch) | |
| tree | 152777f53050f0ba0e5e891c0550df22c41e72a5 /src/codegen.c | |
| parent | 18c167b8b5200aa604a5c665a6dcb3b9ec7f02b4 (diff) | |
| download | mruby-8e42868600e7adcdc5665ff9b0244150296960d6.tar.gz mruby-8e42868600e7adcdc5665ff9b0244150296960d6.zip | |
Repalace int with mrb_bool because a return value is boolean.
Diffstat (limited to 'src/codegen.c')
| -rw-r--r-- | src/codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.c b/src/codegen.c index 8dd5a124d..37176653b 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -683,7 +683,7 @@ scope_body(codegen_scope *s, node *tree) return idx - s->idx; } -static int +static mrb_bool nosplat(node *t) { while (t) { |
