revert accidental commit.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34824 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-02-27 10:31:05 +00:00
parent b7a7b40179
commit 77186600d2

View file

@ -1870,7 +1870,7 @@ failure:
- (void) encodeWithCoder: (NSCoder*)aCoder
{
unsigned length = [self length];
NSUInteger length = [self length];
void *bytes = [self mutableBytes];
if ([aCoder allowsKeyedCoding])
@ -1881,7 +1881,7 @@ failure:
}
else
{
[aCoder encodeValueOfObjCType: @encode(unsigned)
[aCoder encodeValueOfObjCType: @encode(NSUInteger)
at: &length];
if (length)
{
@ -1917,9 +1917,9 @@ failure:
}
else
{
unsigned l;
NSUInteger l;
[aCoder decodeValueOfObjCType: @encode(unsigned) at: &l];
[aCoder decodeValueOfObjCType: @encode(NSUInteger) at: &l];
if (l)
{
void *b;