mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fix typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33227 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d522034e22
commit
1d8d141af9
1 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@ pointerFunctionsAcquire(PFInfo *PF, void **dst, void *src)
|
|||
objc_assign_strongCast((id)src, (id*)dst);
|
||||
}
|
||||
#else
|
||||
#if GSWITHGC
|
||||
#if GS_WITH_GC
|
||||
if (PF->options & NSPointerFunctionsZeroingWeakMemory)
|
||||
GSAssignZeroingWeakPointer(dst, src);
|
||||
else
|
||||
|
@ -198,7 +198,7 @@ pointerFunctionsReplace(PFInfo *PF, void **dst, void *src)
|
|||
PF->options & NSPointerFunctionsCopyIn ? YES : NO);
|
||||
if (PF->relinquishFunction != 0)
|
||||
(*PF->relinquishFunction)(*dst, PF->sizeFunction);
|
||||
#if GSWITHGC
|
||||
#if GS_WITH_GC
|
||||
if (PF->options & NSPointerFunctionsZeroingWeakMemory)
|
||||
GSAssignZeroingWeakPointer(dst, src);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue