From 3d6ecd45c7904a18687adf151ee89c1f37ba5b9c Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 18 May 2014 11:02:43 +0000 Subject: fix type struct RVALUE.file is const char*. struct RVALUE.line is int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gc.c') diff --git a/gc.c b/gc.c index 220c63af81..b7ac5486a8 100644 --- a/gc.c +++ b/gc.c @@ -371,7 +371,7 @@ typedef struct RVALUE { } as; #if GC_DEBUG const char *file; - VALUE line; + int line; #endif } RVALUE; @@ -7503,7 +7503,7 @@ rb_gcdebug_print_obj_condition(VALUE obj) { rb_objspace_t *objspace = &rb_objspace; - fprintf(stderr, "created at: %s:%d\n", RSTRING_PTR(RANY(obj)->file), FIX2INT(RANY(obj)->line)); + fprintf(stderr, "created at: %s:%d\n", RANY(obj)->file, RANY(obj)->line); if (is_pointer_to_heap(objspace, (void *)obj)) { fprintf(stderr, "pointer to heap?: true\n"); -- cgit v1.2.3