Commit 7ad85219 authored by Sergey Lyubka's avatar Sergey Lyubka

Merge pull request #413 from mcallegari/master

Fixed build warning of signed/unsigned conditional expression
parents 07d98212 347a249d
...@@ -3556,7 +3556,7 @@ static void handle_put(struct connection *conn, const char *path) { ...@@ -3556,7 +3556,7 @@ static void handle_put(struct connection *conn, const char *path) {
static void forward_put_data(struct connection *conn) { static void forward_put_data(struct connection *conn) {
struct iobuf *io = &conn->ns_conn->recv_iobuf; struct iobuf *io = &conn->ns_conn->recv_iobuf;
size_t k = conn->cl < (int64_t) io->len ? conn->cl : io->len; // To write size_t k = conn->cl < (int64_t) io->len ? conn->cl : (int64_t) io->len; // To write
int n = write(conn->endpoint.fd, io->buf, k); // Write them! int n = write(conn->endpoint.fd, io->buf, k); // Write them!
if (n > 0) { if (n > 0) {
iobuf_remove(io, n); iobuf_remove(io, n);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment