mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
fix formatting error
This commit is contained in:
parent
acca4d14d4
commit
ceacbc2cbe
1 changed files with 4 additions and 3 deletions
|
@ -203,12 +203,13 @@ UdpQueue::thread_main()
|
|||
time_t age = utc->ageInSeconds();
|
||||
if ( 30 > age ) {
|
||||
logf( XW_LOGINFO, "%s: dispatching packet %d (socket %d); "
|
||||
"%d seconds old", __func__, utc->getID(), utc->addr()->socket(),
|
||||
age );
|
||||
"%d seconds old", __func__, utc->getID(),
|
||||
utc->addr()->socket(), age );
|
||||
(*utc->cb())( utc );
|
||||
utc->logStats();
|
||||
} else {
|
||||
logf( XW_LOGINFO, "%s: dropping packet %d; it's %d seconds old!", age );
|
||||
logf( XW_LOGINFO, "%s: dropping packet %d; it's %d seconds old!",
|
||||
__func__, age );
|
||||
}
|
||||
delete utc;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue