From 0cf16ac5589c23081c7d00ef6cae554ecd8d9897 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 10 Nov 2012 13:45:38 +0900 Subject: [PATCH] Make _OBJ_CLASS_foo the correct type. It needs to be type_obj_class, but I had gotten confused earlier when rearranging the type names as I was having trouble with "not a class" errors. --- tools/qfcc/source/class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/class.c b/tools/qfcc/source/class.c index 1d27f57a8..4975b4fa7 100644 --- a/tools/qfcc/source/class.c +++ b/tools/qfcc/source/class.c @@ -222,7 +222,7 @@ class_symbol (class_type_t *class_type, int external) break; case ct_class: name = va ("_OBJ_CLASS_%s", class_type->c.class->name); - type = &type_obj_object; + type = &type_obj_class; break; case ct_protocol: return 0; // probably in error recovery