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:
Richard Frith-MacDonald 2008-06-13 07:11:08 +00:00
parent 1c7c2890d0
commit 80c87c0a06

View file

@ -723,7 +723,7 @@ if (dst == 0) \
* reset the offset into the local buffer on the \ * reset the offset into the local buffer on the \
* stack and pretend the buffer has grown. \ * stack and pretend the buffer has grown. \
*/ \ */ \
ptr = buf; \ ptr = buf - bsize; \
if (extra == 0) \ if (extra == 0) \
{ \ { \
bsize += BUFSIZ; \ bsize += BUFSIZ; \
@ -1247,7 +1247,7 @@ if (dst == 0) \
* reset the offset into the local buffer on the \ * reset the offset into the local buffer on the \
* stack and pretend the buffer has grown. \ * stack and pretend the buffer has grown. \
*/ \ */ \
ptr = buf; \ ptr = buf - bsize; \
if (extra == 0) \ if (extra == 0) \
{ \ { \
bsize += BUFSIZ; \ bsize += BUFSIZ; \