From 7b79f8c611d030f1ffadf797f2587a8c0c1b7223 Mon Sep 17 00:00:00 2001 From: mccallum Date: Sat, 7 Sep 1996 19:56:16 +0000 Subject: [PATCH] ([Invocation -initWithCoder:]): In accordance with Objective C runtime change, use objc_malloc as a function, not a function pointer. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1716 72102866-910b-0410-8b05-ffd578937521 --- Source/Invocation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Invocation.m b/Source/Invocation.m index ec96f308a..f8c44063c 100644 --- a/Source/Invocation.m +++ b/Source/Invocation.m @@ -100,7 +100,7 @@ withName: NULL]; if (return_size) { - return_value = (*objc_malloc) (return_size); + return_value = objc_malloc (return_size); [coder decodeValueOfObjCType: return_type at: return_value withName: NULL];