mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Fix error in last change
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26643 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c7c2890d0
commit
80c87c0a06
1 changed files with 2 additions and 2 deletions
|
@ -723,7 +723,7 @@ if (dst == 0) \
|
|||
* reset the offset into the local buffer on the \
|
||||
* stack and pretend the buffer has grown. \
|
||||
*/ \
|
||||
ptr = buf; \
|
||||
ptr = buf - bsize; \
|
||||
if (extra == 0) \
|
||||
{ \
|
||||
bsize += BUFSIZ; \
|
||||
|
@ -1247,7 +1247,7 @@ if (dst == 0) \
|
|||
* reset the offset into the local buffer on the \
|
||||
* stack and pretend the buffer has grown. \
|
||||
*/ \
|
||||
ptr = buf; \
|
||||
ptr = buf - bsize; \
|
||||
if (extra == 0) \
|
||||
{ \
|
||||
bsize += BUFSIZ; \
|
||||
|
|
Loading…
Reference in a new issue