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 /mrbgems/mruby-bin-mirb/tools | |
| 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 'mrbgems/mruby-bin-mirb/tools')
| -rw-r--r-- | mrbgems/mruby-bin-mirb/tools/mirb/mirb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c index 7f2fcf282..eb7194f30 100644 --- a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +++ b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c @@ -38,7 +38,7 @@ p(mrb_state *mrb, mrb_value obj, int prompt) /* Guess if the user might want to enter more * or if he wants an evaluation of his code now */ -int +mrb_bool is_code_block_open(struct mrb_parser_state *parser) { int code_block_open = FALSE; |
