diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/idevicebackup2.c | 2 |
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: } else { res = remove_file(newpath); } - if (res != 0) { + if (res != 0 && res != ENOENT) { if (!suppress_warning) printf("Could not remove '%s': %s (%d)\n", newpath, strerror(res), res); errcode = errno_to_device_error(res); |