use TRUE/FALSE instead of 1/0

This commit is contained in:
Yukihiro Matsumoto
2012-08-13 04:19:24 +09:00
parent 0143a85a21
commit 1ed39d5c05
9 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -2296,7 +2296,7 @@ mrb_block_given_p()
{
/*if (ruby_frame->iter == ITER_CUR && ruby_block)
return 1;*//*Qtrue*/
return 0/*Qfalse*/;
return FALSE;
}
/* 15.2.10.5.37 */