mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 08:40:44 +00:00
(replaceElementAtIndex:with:): Fix typo.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c814380480
commit
aef82b1c3d
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@
|
|||
elt ret;
|
||||
|
||||
CHECK_INDEX_RANGE_ERROR(index, _count);
|
||||
RETAIN_ELT(newElement)
|
||||
RETAIN_ELT(newElement);
|
||||
ret = _contents_array[GAP_TO_BASIC(index)];
|
||||
_contents_array[GAP_TO_BASIC(index)] = newElement;
|
||||
return AUTORELEASE_ELT(ret);
|
||||
|
|
Loading…
Reference in a new issue