summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-25 11:20:45 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-25 11:20:45 +0000
commit588e79f7688c9b7f085cb8d46b9289e4769f4135 (patch)
treea3f7e6608bd343a501e92a8b7464df3c55bc066b /gc.c
parent6792979e981b6378db325a24800500c549f78bb8 (diff)
* gc.c (RVALUE): in RVALUE and RBasic, flags must be the same type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 10cb5c6a3d..4360a535f2 100644
--- a/gc.c
+++ b/gc.c
@@ -95,7 +95,7 @@ int ruby_gc_debug_indent = 0;
typedef struct RVALUE {
union {
struct {
- unsigned long flags; /* always 0 for freed obj */
+ VALUE flags; /* always 0 for freed obj */
struct RVALUE *next;
} free;
struct RBasic basic;