summaryrefslogtreecommitdiffstats
path: root/tools/idevicebackup2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/idevicebackup2.c')
-rw-r--r--tools/idevicebackup2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index 57c7865..30e3724 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -240,6 +240,8 @@ static char* format_size_for_display(uint64_t size)
240 } else if (size >= 1000LL) { 240 } else if (size >= 1000LL) {
241 sz = ((double)size / 1000.0f); 241 sz = ((double)size / 1000.0f);
242 sprintf(buf, "%0.1f kB", sz); 242 sprintf(buf, "%0.1f kB", sz);
243 } else {
244 sprintf(buf, "%d Bytes", (int)size);
243 } 245 }
244 return strdup(buf); 246 return strdup(buf);
245} 247}