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.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linkedlist.h') diff --git a/linkedlist.h b/linkedlist.h index 6060345f..da38e352 100644 --- a/linkedlist.h +++ b/linkedlist.h @@ -52,7 +52,7 @@ typedef struct linkedList_s linkedList_t; typedef llElt_t* linkedListCookie_t; /* this type avoids exposing internals and keeps us flexible */ /* prototypes */ -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)()); rsRetVal llDestroy(linkedList_t *pThis); rsRetVal llGetNextElt(linkedList_t *pThis, linkedListCookie_t *ppElt, void **ppUsr); rsRetVal llAppend(linkedList_t *pThis, void *pKey, void *pData); -- cgit