diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-09 19:11:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-09 19:11:43 -0400 |
commit | df27f225b7d4b2702acde47be737878725eeb746 (patch) | |
tree | 9fc8370130f6f96756a2d1b96f6e46292c92bd39 /gcc | |
parent | f17dfa938d111e9b48a986660221863ec65df872 (diff) | |
download | gcc-df27f225b7d4b2702acde47be737878725eeb746.zip gcc-df27f225b7d4b2702acde47be737878725eeb746.tar.gz gcc-df27f225b7d4b2702acde47be737878725eeb746.tar.bz2 |
(objc_init_statics): Fix missing part of last change.
From-SVN: r9604
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/objc/init.c b/gcc/objc/init.c index eb0e288..8acb003 100644 --- a/gcc/objc/init.c +++ b/gcc/objc/init.c @@ -77,7 +77,7 @@ objc_init_statics () *statics_in_module; statics_in_module++) { struct objc_static_instances *statics = *statics_in_module; - Class *class = objc_lookup_class (statics->class_name); + Class class = objc_lookup_class (statics->class_name); if (!class) module_initialized = 0; |