summaryrefslogtreecommitdiffstats
path: root/stringbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stringbuf.c')
-rwxr-xr-xstringbuf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/stringbuf.c b/stringbuf.c
index 040ede77..b777c40d 100755
--- a/stringbuf.c
+++ b/stringbuf.c
@@ -168,7 +168,6 @@ static rsRetVal rsCStrExtendBuf(rsCStrObj *pThis, size_t iMinNeeded)
}
iNewSize += pThis->iBufSize; /* add current size */
-dbgprintf("extending string buffer, old %d, new %d\n", pThis->iBufSize, iNewSize);
/* and then allocate and copy over */
/* DEV debugging only: dbgprintf("extending string buffer, old %d, new %d\n", pThis->iBufSize, iNewSize); */
if((pNewBuf = (uchar*) malloc(iNewSize * sizeof(uchar))) == NULL)