summaryrefslogtreecommitdiffstats
path: root/linkedlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'linkedlist.c')
-rw-r--r--linkedlist.c2
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);