([Coding -decodeArrayOfType:at:count:withName:]): Change the 3rd

argument type; pass the count directly, not as a pointer.  The
encoding and decoding of array's no longer records the array count;
if necessary, you must do that yourself ahead of time.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@603 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-09-10 22:17:55 +00:00
parent 7ecfb3729f
commit 1dce17d034
2 changed files with 2 additions and 2 deletions

View file

@ -108,7 +108,7 @@
- (void) decodeArrayOfType: (const char *)type
at: (void *)d
count: (unsigned *)c
count: (unsigned)c
withName: (const char **)name;
- (void) decodeObjectAt: (id*)anObjPtr