diff options
| -rw-r--r-- | src/dump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dump.c b/src/dump.c index bdfa0787f..2691aab3d 100644 --- a/src/dump.c +++ b/src/dump.c @@ -722,11 +722,11 @@ is_debug_info_defined(mrb_irep *irep) { size_t i; - if (!irep->debug_info) return 0; + if (!irep->debug_info) return FALSE; for (i=0; i<irep->rlen; i++) { - if (!is_debug_info_defined(irep->reps[i])) return 0; + if (!is_debug_info_defined(irep->reps[i])) return FALSE; } - return 1; + return TRUE; } static int |
