summaryrefslogtreecommitdiffstats
path: root/linkedlist.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-31 16:07:40 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-31 16:07:40 +0000
commit9234c95d74fb015e839cf5fe5ebbdf138e4a760d (patch)
tree85b2c8498405d0cbecafb38f4251e02860bc74ce /linkedlist.c
parent074ece90c0b7f32307716eeb6d0308b83197b6ce (diff)
downloadrsyslog-9234c95d74fb015e839cf5fe5ebbdf138e4a760d.tar.gz
rsyslog-9234c95d74fb015e839cf5fe5ebbdf138e4a760d.tar.xz
rsyslog-9234c95d74fb015e839cf5fe5ebbdf138e4a760d.zip
omfile.c now uses the new table-driven cfsysline system
Diffstat (limited to 'linkedlist.c')
-rw-r--r--linkedlist.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/linkedlist.c b/linkedlist.c
index 0a798efb..c1296e95 100644
--- a/linkedlist.c
+++ b/linkedlist.c
@@ -160,7 +160,6 @@ finalize_it:
rsRetVal llAppend(linkedList_t *pThis, void *pKey, void *pData)
{
llElt_t *pElt;
-llElt_t *pEltPrev = pThis->pLast;
DEFiRet;
CHKiRet(llEltConstruct(&pElt, pKey, pData));
@@ -172,7 +171,6 @@ llElt_t *pEltPrev = pThis->pLast;
pThis->pLast->pNext = pElt;
}
pThis->pLast = pElt;
-printf("llAppend pThis 0x%x, pLastPrev 0x%x, pLast 0x%x, pElt 0x%x\n", pThis, pEltPrev, pThis->pLast, pElt);
finalize_it:
return iRet;