summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicebackup2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index 5ac214e..263a1c1 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -576,7 +576,7 @@ static int mb2_handle_send_file(const char *backup_dir, const char *path, plist_
576 total = fst.st_size; 576 total = fst.st_size;
577 577
578 gchar *format_size = g_format_size_for_display(total); 578 gchar *format_size = g_format_size_for_display(total);
579 PRINT_VERBOSE(1, "Sending file '%s': (%s)\n", path, format_size); 579 PRINT_VERBOSE(1, "Sending '%s' (%s)\n", path, format_size);
580 g_free(format_size); 580 g_free(format_size);
581 581
582 if (total == 0) { 582 if (total == 0) {
@@ -733,7 +733,7 @@ static int mb2_handle_receive_files(plist_t message, const char *backup_dir)
733 plist_get_uint_val(node, &backup_total_size); 733 plist_get_uint_val(node, &backup_total_size);
734 } 734 }
735 if (backup_total_size > 0) { 735 if (backup_total_size > 0) {
736 PRINT_VERBOSE(1, "Receiving backup data\n"); 736 PRINT_VERBOSE(1, "Receiving files\n");
737 } 737 }
738 738
739 do { 739 do {