Fixed ASSIGN macro

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3216 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-11-13 09:57:03 +00:00
parent e8d980b389
commit 94c42265df

View file

@ -206,12 +206,12 @@ if (value != object) \
if (value) \
{ \
[value retain]; \
if (object) \
{ \
[object release]; \
} \
object = value; \
} \
if (object) \
{ \
[object release]; \
} \
object = value; \
})
/*