diff options
author | Nikias Bassen | 2022-12-10 02:29:07 +0100 |
---|---|---|
committer | Nikias Bassen | 2022-12-10 02:29:07 +0100 |
commit | 7a8e432e9b492bd3e800861f435d1bbe751076b0 (patch) | |
tree | 4ef165a41930524181d4de9432679c67fcaa9ba2 | |
parent | 06f212edf6ce18664af056a63b6744433a8dc9f9 (diff) | |
download | libimobiledevice-7a8e432e9b492bd3e800861f435d1bbe751076b0.tar.gz libimobiledevice-7a8e432e9b492bd3e800861f435d1bbe751076b0.tar.bz2 |
idevicebackup2: Fix missing break in switch case statement
-rw-r--r-- | tools/idevicebackup2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index f2242d2..82dc90d 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c @@ -1555,6 +1555,7 @@ int main(int argc, char *argv[]) return 2; } source_udid = strdup(optarg); + break; case 'i': interactive_mode = 1; break; |