From 35bfefa717c39777eedbd6cac74b9726922da7fe Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Thu, 27 Sep 2012 10:45:39 +0200 Subject: [PATCH] Fix debug output typo. --- src/network/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/connection.c b/src/network/connection.c index f9f2cdc..b30b46c 100644 --- a/src/network/connection.c +++ b/src/network/connection.c @@ -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; }