diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-22 10:35:09 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-22 10:35:09 -0400 |
commit | 9d46282b6cde36acb5b40a9d8c60a530de0e1328 (patch) | |
tree | 8a2f14d6a947afd24b5e8da309b6f78cb9e933d6 /gcc/objc/init.c | |
parent | 6f18718f3ff7a4b87bacd842f10582dc0cd87a08 (diff) | |
download | gcc-9d46282b6cde36acb5b40a9d8c60a530de0e1328.tar.gz |
Replace use of free with objc_free.
From-SVN: r12762
Diffstat (limited to 'gcc/objc/init.c')
-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 a7229d50f9d..902d2245de4 100644 --- a/gcc/objc/init.c +++ b/gcc/objc/init.c @@ -117,7 +117,7 @@ objc_init_statics () /* Remove this module from the uninitialized list. */ struct objc_list *this = *cell; *cell = this->tail; - free (this); + objc_free(this); } else cell = &(*cell)->tail; |