summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2014-06-12 21:01:34 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2014-06-12 21:01:34 +0000
commite97ae4ed01cfce4c89d0df2140763cee7d21629b (patch)
tree3cc5310031911ba53a0a74c7d1d969d2017ec310
parentcd82c879a28b27fea0c66ca09528acd8c8b447c5 (diff)
Compile fix for DEBUG=1 builds, 32-bit, GCC 4.6.3 (nw)
-rw-r--r--src/lib/web/mongoose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/web/mongoose.c b/src/lib/web/mongoose.c
index 29f089044d6..b98149acc30 100644
--- a/src/lib/web/mongoose.c
+++ b/src/lib/web/mongoose.c
@@ -1664,7 +1664,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];