From 9d46282b6cde36acb5b40a9d8c60a530de0e1328 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 22 Sep 1996 10:35:09 -0400 Subject: [PATCH] Replace use of free with objc_free. From-SVN: r12762 --- gcc/objc/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2