Fix typo NS -> GS. We don't actually want NSAllocateObject to call NSAllocateObject...

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33458 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2011-07-04 21:23:26 +00:00
parent fd7a643bb2
commit af93046588

View file

@ -788,7 +788,7 @@ NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone)
{ {
if (!objc_collecting_enabled()) if (!objc_collecting_enabled())
{ {
NSAllocateObject(aClass, extraBytes, zone); GSAllocateObject(aClass, extraBytes, zone);
} }
id new = class_createInstance(aClass, extraBytes); id new = class_createInstance(aClass, extraBytes);
if (0 == cxx_construct) if (0 == cxx_construct)