Fix debug output typo.

This commit is contained in:
Jan Vidar Krey 2012-09-27 10:45:39 +02:00
parent 845aefc941
commit 35bfefa717
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ void net_con_callback(struct net_connection* con, int events)
if (events == NET_EVENT_TIMEOUT)
{
LOG_TRACE("net_con_callback(%p, TIMEOUT", con);
LOG_TRACE("net_con_callback(%p, TIMEOUT)", con);
con->callback(con, events, con->ptr);
return;
}