Fixed build warning of signed/unsigned conditional expression

This commit is contained in:
Massimo Callegari 2014-08-30 13:04:11 +02:00
parent 07d982129a
commit 347a249d10

View File

@ -3556,7 +3556,7 @@ static void handle_put(struct connection *conn, const char *path) {
static void forward_put_data(struct connection *conn) {
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!
if (n > 0) {
iobuf_remove(io, n);