diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-01 16:44:24 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-01 16:44:24 +0000 |
commit | dcec3c8c4e7bfb9c0cb904047d57188f6b377575 (patch) | |
tree | 4befca2a9fbd89909d854f4881cedf6bb5d81055 /linkedlist.c | |
parent | 00c4d034ba294dada5095413dd453b95fdbec968 (diff) | |
download | rsyslog-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.c')
-rw-r--r-- | linkedlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |