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();
|
time_t age = utc->ageInSeconds();
|
||||||
if ( 30 > age ) {
|
if ( 30 > age ) {
|
||||||
logf( XW_LOGINFO, "%s: dispatching packet %d (socket %d); "
|
logf( XW_LOGINFO, "%s: dispatching packet %d (socket %d); "
|
||||||
"%d seconds old", __func__, utc->getID(), utc->addr()->socket(),
|
"%d seconds old", __func__, utc->getID(),
|
||||||
age );
|
utc->addr()->socket(), age );
|
||||||
(*utc->cb())( utc );
|
(*utc->cb())( utc );
|
||||||
utc->logStats();
|
utc->logStats();
|
||||||
} else {
|
} 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;
|
delete utc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue