From dcec3c8c4e7bfb9c0cb904047d57188f6b377575 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 1 Aug 2007 16:44:24 +0000 Subject: shuffeled code in cfline() to prepare for a better system of processing the selector_t linked list --- linkedlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linkedlist.c') diff --git a/linkedlist.c b/linkedlist.c index c1296e95..2e0d5052 100644 --- a/linkedlist.c +++ b/linkedlist.c @@ -42,7 +42,7 @@ /* Initialize an existing linkedList_t structure * pKey destructor may be zero to take care of non-keyed lists. */ -rsRetVal llInit(linkedList_t *pThis, rsRetVal (*pEltDestructor)(void*), rsRetVal (*pKeyDestructor)(void*), int pCmpOp()) +rsRetVal llInit(linkedList_t *pThis, rsRetVal (*pEltDestructor)(), rsRetVal (*pKeyDestructor)(void*), int (*pCmpOp)()) { assert(pThis != NULL); assert(pEltDestructor != NULL); -- cgit