From 1777cc6e867ff243f207c37f4ca4f5bd4295fedc Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Mon, 7 Oct 2013 17:28:53 +0100 Subject: [PATCH] Squashed warning --- mongoose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index 084af5840..4f6d3f0df 100644 --- a/mongoose.c +++ b/mongoose.c @@ -5022,7 +5022,7 @@ static void process_new_connection(struct mg_connection *conn) { if (ebuf[0] == '\0') { handle_request(conn); - call_user(MG_REQUEST_END, conn, (void *) conn->status_code); + call_user(MG_REQUEST_END, conn, (void *) (long) conn->status_code); log_access(conn); } if (ri->remote_user != NULL) { -- GitLab