summaryrefslogtreecommitdiffstats
path: root/tools/idevicebackup2.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2014-03-24 14:42:58 +0100
committerGravatar Nikias Bassen2014-03-24 14:42:58 +0100
commit7113b03af0c99f7e22970955d09ad19a4af782b5 (patch)
treee5286a0c303008ba5802fb313948fb8ce9d3fc34 /tools/idevicebackup2.c
parent38c4beb0d568dd54c70a4fdb6dadf77ee3ec58dc (diff)
downloadlibimobiledevice-7113b03af0c99f7e22970955d09ad19a4af782b5.tar.gz
libimobiledevice-7113b03af0c99f7e22970955d09ad19a4af782b5.tar.bz2
idevicebackup2: add cast to silence compiler warning
Diffstat (limited to 'tools/idevicebackup2.c')
-rw-r--r--tools/idevicebackup2.c2
1 files changed, 1 insertions, 1 deletions
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));