diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-11 09:10:45 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-11 09:10:45 +0000 |
commit | dee95717d729f136f8e6bb577927e2645bdf07dc (patch) | |
tree | f580c0691755794abb81647fc8e7e4620592806e /linkedlist.h | |
parent | e79199816d67fe2e8a93aedf84dc0b8f7652521b (diff) | |
download | rsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.tar.gz rsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.tar.xz rsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.zip |
cleaned up compiler warnings
Diffstat (limited to 'linkedlist.h')
-rw-r--r-- | linkedlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linkedlist.h b/linkedlist.h index 0b5b36e9..aafbcf88 100644 --- a/linkedlist.h +++ b/linkedlist.h @@ -58,7 +58,7 @@ rsRetVal llDestroyRootElt(linkedList_t *pThis); rsRetVal llGetNextElt(linkedList_t *pThis, linkedListCookie_t *ppElt, void **ppUsr); rsRetVal llAppend(linkedList_t *pThis, void *pKey, void *pData); rsRetVal llFind(linkedList_t *pThis, void *pKey, void **ppData); -rsRetVal llGetKey(llElt_t *pThis, void **ppData); +rsRetVal llGetKey(llElt_t *pThis, void *ppData); rsRetVal llGetNumElts(linkedList_t *pThis, int *piCnt); rsRetVal llExecFunc(linkedList_t *pThis, rsRetVal (*pFunc)(void*, void*), void* pParam); /* use the macro below to define a function that will be executed by |