summaryrefslogtreecommitdiffstats
path: root/linkedlist.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-09-11 09:10:45 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-09-11 09:10:45 +0000
commitdee95717d729f136f8e6bb577927e2645bdf07dc (patch)
treef580c0691755794abb81647fc8e7e4620592806e /linkedlist.h
parente79199816d67fe2e8a93aedf84dc0b8f7652521b (diff)
downloadrsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.tar.gz
rsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.tar.xz
rsyslog-dee95717d729f136f8e6bb577927e2645bdf07dc.zip
cleaned up compiler warnings
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 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