mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
fix more release build unused var warnings
This commit is contained in:
parent
7d48ad714f
commit
e8b372c274
2 changed files with 2 additions and 2 deletions
|
@ -879,7 +879,7 @@ assertQueueOk( const CommsCtxt* comms )
|
|||
#endif
|
||||
|
||||
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 );
|
||||
|
|
|
@ -3042,7 +3042,7 @@ sock_state_change( void* closure, CeConnState oldState, CeConnState newState )
|
|||
|
||||
#ifdef COMMS_HEARTBEAT
|
||||
static void
|
||||
ce_reset_proc( void* XP_UNUSED_STANDALONE(closure) )
|
||||
ce_reset_proc( void* XP_UNUSED(closure) )
|
||||
{
|
||||
LOG_FUNC();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue