Remove an extra space.
Submitted by: ru
This commit is contained in:
parent
a8b951bb30
commit
e97977d265
@ -65,7 +65,7 @@ __FBSDID("$FreeBSD$");
|
||||
#define BufExpand(bp, nb) do { \
|
||||
if ((bp)->left < (nb) + 1) { \
|
||||
int newSize = (bp)->size + max((nb) + 1, BUF_ADD_INC); \
|
||||
Byte *newBuf = erealloc((bp)->buffer, newSize); \
|
||||
Byte *newBuf = erealloc((bp)->buffer, newSize); \
|
||||
\
|
||||
(bp)->inPtr = newBuf + ((bp)->inPtr - (bp)->buffer); \
|
||||
(bp)->outPtr = newBuf + ((bp)->outPtr - (bp)->buffer); \
|
||||
|
Loading…
Reference in New Issue
Block a user