fix more release build unused var warnings

This commit is contained in:
ehouse 2009-09-20 21:11:58 +00:00
parent 7d48ad714f
commit e8b372c274
2 changed files with 2 additions and 2 deletions

View file

@ -879,7 +879,7 @@ assertQueueOk( const CommsCtxt* comms )
#endif #endif
static void static void
freeElem( const CommsCtxt* comms, MsgQueueElem* elem ) freeElem( const CommsCtxt* XP_UNUSED_DBG(comms), MsgQueueElem* elem )
{ {
XP_FREE( comms->mpool, elem->msg ); XP_FREE( comms->mpool, elem->msg );
XP_FREE( comms->mpool, elem ); XP_FREE( comms->mpool, elem );

View file

@ -3042,7 +3042,7 @@ sock_state_change( void* closure, CeConnState oldState, CeConnState newState )
#ifdef COMMS_HEARTBEAT #ifdef COMMS_HEARTBEAT
static void static void
ce_reset_proc( void* XP_UNUSED_STANDALONE(closure) ) ce_reset_proc( void* XP_UNUSED(closure) )
{ {
LOG_FUNC(); LOG_FUNC();
} }