([MutableCString -initWithCoder:]): Remove unused variable n. Return

self, not n.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1161 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-18 13:53:13 +00:00
parent d8e18e8c0e
commit f239d2f58d

View file

@ -125,7 +125,6 @@ stringDecrementCountAndFillHoleAt(MutableCStringStruct *self,
- initWithCoder: aCoder
{
MutableCString *n;
unsigned cap;
[aCoder decodeValueOfObjCType:@encode(unsigned) at:&cap withName:NULL];
@ -135,7 +134,7 @@ stringDecrementCountAndFillHoleAt(MutableCStringStruct *self,
_count = strlen(_contents_chars);
_capacity = cap;
_free_contents = YES;
return n;
return self;
}
/* Empty copy must empty an allocCopy'ed version of self */