From 072833acd5c9a2c1461c71e9dde2ff9e86d43aff Mon Sep 17 00:00:00 2001
From: Sergey Lyubka <valenok@gmail.com>
Date: Mon, 23 Dec 2013 10:01:11 +0000
Subject: [PATCH] Squashed win32 warnings

---
 mongoose.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/mongoose.c b/mongoose.c
index b3f28529f..bb388a6ba 100644
--- a/mongoose.c
+++ b/mongoose.c
@@ -1478,7 +1478,8 @@ int mg_websocket_write(struct mg_connection* conn, int opcode,
     } else {
       // 64-bit length field
       copy[1] = 127;
-      * (uint32_t *) (copy + 2) = (uint32_t) htonl((uint64_t) data_len >> 32);
+      * (uint32_t *) (copy + 2) = (uint32_t)
+        htonl((uint32_t) ((uint64_t) data_len >> 32));
       * (uint32_t *) (copy + 6) = (uint32_t) htonl(data_len & 0xffffffff);
       memcpy(copy + 10, data, data_len);
       copy_len = 10 + data_len;
@@ -3097,8 +3098,8 @@ static void close_local_endpoint(struct connection *conn) {
 
 static void transfer_file_data(struct connection *conn) {
   char buf[IOBUF_SIZE];
-  int n = read(conn->endpoint.fd, buf,
-               conn->cl < (int64_t) sizeof(buf) ? conn->cl : (int) sizeof(buf));
+  int n = read(conn->endpoint.fd, buf, conn->cl < (int64_t) sizeof(buf) ?
+               (int) conn->cl : (int) sizeof(buf));
 
   if (is_error(n)) {
     close_local_endpoint(conn);
-- 
GitLab