From 7113b03af0c99f7e22970955d09ad19a4af782b5 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 24 Mar 2014 14:42:58 +0100 Subject: idevicebackup2: add cast to silence compiler warning --- tools/idevicebackup2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/idevicebackup2.c') diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index b5bbd57..e67a6e6 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c @@ -702,7 +702,7 @@ static int mb2_handle_send_file(mobilebackup2_client_t mobilebackup2, const char sent = 0; do { - length = ((total-sent) < sizeof(buf)) ? (uint32_t)total-sent : (uint32_t)sizeof(buf); + length = ((total-sent) < (long long)sizeof(buf)) ? (uint32_t)total-sent : (uint32_t)sizeof(buf); /* send data size (file size + 1) */ nlen = htobe32(length+1); memcpy(buf, &nlen, sizeof(nlen)); -- cgit v1.1-32-gdbae