diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2016-04-12 12:53:21 +0000 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2016-04-12 12:53:21 +0000 |
commit | 69a35bc3a06cc0ef1b52c49a64f93dcb661e0989 (patch) | |
tree | ec1bf5cffc0adfbc9a4c9900e59fce957507602f | |
parent | 8107709672bfd4f71c8f89e0f51494b4bd02adef (diff) |
connection.c: removed unused variable, silent compiler warning
-rw-r--r-- | src/microhttpd/connection.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index 6e75ebd5..e6b367a8 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -2051,10 +2051,9 @@ static void parse_connection_headers (struct MHD_Connection *connection) { const char *clen; - MHD_UNSIGNED_LONG_LONG cval; struct MHD_Response *response; const char *enc; - char *end; + const char *end; parse_cookie_header (connection); if ( (0 != (MHD_USE_PEDANTIC_CHECKS & connection->daemon->options)) && |