From 19653932cfeba9db2cc99fb2f5fb262df2f8f6c9 Mon Sep 17 00:00:00 2001 From: mccallum Date: Wed, 5 Apr 1995 16:09:45 +0000 Subject: [PATCH] (NSDeallocateObject): Fix typo. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@282 72102866-910b-0410-8b05-ffd578937521 --- Source/NSDeallocateObject.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSDeallocateObject.m b/Source/NSDeallocateObject.m index 37b78fbcf..404a26142 100644 --- a/Source/NSDeallocateObject.m +++ b/Source/NSDeallocateObject.m @@ -27,7 +27,7 @@ void NSDeallocateObject(NSObject *anObject) { if ((anObject!=nil) && CLS_ISCLASS(((id)anObject)->class_pointer)) { - NSZone z = [anObject zone]; + NSZone *z = [anObject zone]; ((id)anObject)->class_pointer = (void*) 0xdeadface; NSZoneFree (z, anObject); }