summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicebackup2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index f47ff33..d355200 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -2128,7 +2128,7 @@ checkpoint:
2128 } else { 2128 } else {
2129 res = remove_file(newpath); 2129 res = remove_file(newpath);
2130 } 2130 }
2131 if (res != 0) { 2131 if (res != 0 && res != ENOENT) {
2132 if (!suppress_warning) 2132 if (!suppress_warning)
2133 printf("Could not remove '%s': %s (%d)\n", newpath, strerror(res), res); 2133 printf("Could not remove '%s': %s (%d)\n", newpath, strerror(res), res);
2134 errcode = errno_to_device_error(res); 2134 errcode = errno_to_device_error(res);