From 9234c95d74fb015e839cf5fe5ebbdf138e4a760d Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 31 Jul 2007 16:07:40 +0000 Subject: omfile.c now uses the new table-driven cfsysline system --- linkedlist.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'linkedlist.c') 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; -- cgit