From 8f5a50eff9f9ff57d25feb9e4d3b280614f56aac Mon Sep 17 00:00:00 2001 From: mccallum Date: Fri, 12 Jan 1996 16:54:39 +0000 Subject: [PATCH] ([NSMethodSignature +signatureWithObjCTypes:]): Fix typo: change objc_size_of_type to objc_sizeof_type. (Reported by Gregor Hoffleit .) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@709 72102866-910b-0410-8b05-ffd578937521 --- Source/NSMethodSignature.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NSMethodSignature.m b/Source/NSMethodSignature.m index 7ca2744ff..26cc82e4f 100644 --- a/Source/NSMethodSignature.m +++ b/Source/NSMethodSignature.m @@ -1,5 +1,5 @@ /* Implementation of NSMethodSignature for GNUStep - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum Date: August 1994 @@ -60,7 +60,7 @@ types_get_number_of_arguments (const char *types) bcopy(t, newMs->returnTypes, len); newMs->returnTypes[len-1] = '\0'; newMs->argFrameLength = types_get_size_of_arguments(t); - newMs->returnFrameLength = objc_size_of_type(t); + newMs->returnFrameLength = objc_sizeof_type(t); newMs->numArgs = types_get_number_of_arguments(t); return newMs; }