summaryrefslogtreecommitdiff
path: root/ruby.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.h b/ruby.h
index 09fb395ace..8f1fbf970d 100644
--- a/ruby.h
+++ b/ruby.h
@@ -136,7 +136,7 @@ VALUE rb_uint2inum _((unsigned long));
#define Qnil 4
#define Qundef 6 /* undefined value for placeholder */
-#define RTEST(v) ((VALUE)(v) & ~Qnil)
+#define RTEST(v) (((VALUE)(v) & ~Qnil) != 0)
#define NIL_P(v) ((VALUE)(v) == Qnil)
#define CLASS_OF(v) rb_class_of((VALUE)(v))