summaryrefslogtreecommitdiffstats
path: root/linkedlist.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-08-01 16:44:24 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-08-01 16:44:24 +0000
commitdcec3c8c4e7bfb9c0cb904047d57188f6b377575 (patch)
tree4befca2a9fbd89909d854f4881cedf6bb5d81055 /linkedlist.h
parent00c4d034ba294dada5095413dd453b95fdbec968 (diff)
downloadrsyslog-dcec3c8c4e7bfb9c0cb904047d57188f6b377575.tar.gz
rsyslog-dcec3c8c4e7bfb9c0cb904047d57188f6b377575.tar.xz
rsyslog-dcec3c8c4e7bfb9c0cb904047d57188f6b377575.zip
shuffeled code in cfline() to prepare for a better system of processing the
selector_t linked list
Diffstat (limited to 'linkedlist.h')
-rw-r--r--linkedlist.h2
1 files changed, 1 insertions, 1 deletions
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);