diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-04 17:17:12 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-04 17:17:12 +0000 |
commit | 800ac1889b99057f1e6670d4ce5941bda33b6773 (patch) | |
tree | 0f4eb44b3ca1375790d006648422c9f535f4e00f /msg.c | |
parent | e41c0854dac685047dba1107b097bf674e740131 (diff) | |
download | rsyslog-800ac1889b99057f1e6670d4ce5941bda33b6773.tar.gz rsyslog-800ac1889b99057f1e6670d4ce5941bda33b6773.tar.xz rsyslog-800ac1889b99057f1e6670d4ce5941bda33b6773.zip |
changed queue object Construction/Startup interface
Diffstat (limited to 'msg.c')
-rw-r--r-- | msg.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -286,10 +286,9 @@ msg_t* MsgDup(msg_t* pOld) * is a so slow operation that recration of the caches does not count. * rgerhards, 2008-01-03 */ -rsRetVal MsgSerialize(uchar **ppOutBuf, size_t *pLenBuf, void *pUsr) +static rsRetVal MsgSerialize(msg_t *pThis, uchar **ppOutBuf, size_t *pLenBuf) { DEFiRet; - msg_t* pThis = pUsr; rsCStrObj *pCStr; dbgprintf("MsgSerialize in\n"); |