Use release instead of free.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@480 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-06-30 20:28:51 +00:00
parent 779f0a9918
commit f7efb29893
3 changed files with 9 additions and 9 deletions

View file

@ -50,9 +50,9 @@ int main()
[coder encodeObject:ll withName:"Test EltNodeCollector LinkedList"];
/* Free the objects */
[coder free];
[set free];
[ll free];
[coder release];
[set release];
[ll release];
/* Read them back in from the file */
/* First init the stream and coder */
@ -78,9 +78,9 @@ int main()
[ll printForDebugger];
/* Free the objects */
[coder free];
[set free];
[ll free];
[coder release];
[set release];
[ll release];
exit(0);
}