From 893c3f74f877ddc08e66d665f99d432957f09bcb Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 31 Oct 2014 08:50:36 +0000 Subject: [PATCH] added \n to one of debugging messages --- qse/lib/http/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qse/lib/http/httpd.c b/qse/lib/http/httpd.c index 9834284f..8bc28b42 100644 --- a/qse/lib/http/httpd.c +++ b/qse/lib/http/httpd.c @@ -737,7 +737,7 @@ static void tmr_idle_handle (qse_tmr_t* tmr, const qse_ntime_t* now, void* ctx) if (qse_cmptime(&diff, &client->server->httpd->opt.idle_limit) >= 0) { /* this client is idle */ - HTTPD_DBGOUT1 ("Purging idle client %d", (int)client->handle); + HTTPD_DBGOUT1 ("Purging idle client %zd\n", (qse_size_t)client->handle); purge_client (client->server->httpd, client); } else