summaryrefslogtreecommitdiffstats
path: root/template.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-04-19 15:38:11 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-04-19 15:38:11 +0200
commit393c67ba5bc20613436552a26a6f0a20d4dda9fe (patch)
tree0fc29ff50842f12f8cc81860714ea41fd1b0b2a6 /template.c
parent9039fad4019cb9a0f96eb296835476841b453dd3 (diff)
downloadrsyslog-393c67ba5bc20613436552a26a6f0a20d4dda9fe.tar.gz
rsyslog-393c67ba5bc20613436552a26a6f0a20d4dda9fe.tar.xz
rsyslog-393c67ba5bc20613436552a26a6f0a20d4dda9fe.zip
minor cleanup
Diffstat (limited to 'template.c')
-rw-r--r--template.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/template.c b/template.c
index 5a43cba3..68c57be1 100644
--- a/template.c
+++ b/template.c
@@ -61,7 +61,6 @@ static inline rsRetVal ExtendBuf(uchar **pBuf, size_t *pLenBuf, size_t iMinSize)
CHKmalloc(pNewBuf = (uchar*) realloc(*pBuf, iNewSize));
*pBuf = pNewBuf;
*pLenBuf = iNewSize;
-dbgprintf("extend buf to at least %ld, done %ld\n", iMinSize, iNewSize);
finalize_it:
RETiRet;