From 030daaf5d5c245971467e8c72e578875ab76f05e Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Mon, 16 Jun 2014 10:44:56 +0100 Subject: [PATCH] squash warning under mingw --- mongoose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index 1dbe859f5..dd894b037 100644 --- a/mongoose.c +++ b/mongoose.c @@ -1672,7 +1672,7 @@ static void *push_to_stdin(void *arg) { static void *pull_from_stdout(void *arg) { struct threadparam *tp = (struct threadparam *)arg; - int k, stop = 0; + int k = 0, stop = 0; DWORD n, sent; char buf[IOBUF_SIZE]; -- GitLab