summaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-18 08:05:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-18 08:05:32 +0000
commitc3c29381b8c90a4cc27e08f1e8a337a95037c90f (patch)
treebdb9cf7c15bd7db7fdaa0ddf4ee53e03e58f5780 /enum.c
parent932b5cf7115dcd87435f2c2ab2f054e94b9ef367 (diff)
downloadruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.tar.gz
ruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.tar.xz
ruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.zip
* suppressed shorten-64-to-32 warnings.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/enum.c b/enum.c
index 3379cf2c7..715969d06 100644
--- a/enum.c
+++ b/enum.c
@@ -1568,13 +1568,13 @@ enum_zip(int argc, VALUE *argv, VALUE obj)
NODE *memo;
VALUE result = Qnil;
VALUE args = rb_ary_new4(argc, argv);
- int allary = Qtrue;
+ int allary = TRUE;
argv = RARRAY_PTR(args);
for (i=0; i<argc; i++) {
VALUE ary = rb_check_array_type(argv[i]);
if (NIL_P(ary)) {
- allary = Qfalse;
+ allary = FALSE;
break;
}
argv[i] = ary;