summaryrefslogtreecommitdiffstats
path: root/template.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-10-19 12:39:48 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-10-19 12:39:48 +0200
commit0a24b3afc093e16038da170458e2ecb68b363bdd (patch)
tree5100ee6753a221a079e332e52613845471bfc92f /template.c
parent7cdc7cbaa055c84b463d5fba4457036e249828a1 (diff)
downloadrsyslog-0a24b3afc093e16038da170458e2ecb68b363bdd.tar.gz
rsyslog-0a24b3afc093e16038da170458e2ecb68b363bdd.tar.xz
rsyslog-0a24b3afc093e16038da170458e2ecb68b363bdd.zip
fixing some compile problems on FreeBSD
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;