mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
crash fix: provide missing param to format string
This commit is contained in:
parent
6eaf7a57b5
commit
4b635791d7
1 changed files with 2 additions and 1 deletions
|
@ -1690,7 +1690,8 @@ handle_udp_packet( UdpThreadClosure* utc )
|
|||
AddrInfo addr( g_udpsock, clientToken, utc->saddr() );
|
||||
(void)processMessage( ptr, end - ptr, &addr );
|
||||
} else {
|
||||
logf( XW_LOGERROR, "%s: dropping packet with token of 0" );
|
||||
logf( XW_LOGERROR, "%s: dropping packet with token of 0",
|
||||
__func__ );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue