diff options
author | 2025-06-07 12:40:44 +0200 | |
---|---|---|
committer | 2025-06-07 12:40:44 +0200 | |
commit | f1e99c07253e80fe9f1941031d5fb91f329c1a1d (patch) | |
tree | a9b3da9e37b08386a749943b1f809fadfc25682d /src | |
parent | e3f35586c2a97f5b7479e57884be1f2f4723b4d1 (diff) | |
download | libimobiledevice-f1e99c07253e80fe9f1941031d5fb91f329c1a1d.tar.gz libimobiledevice-f1e99c07253e80fe9f1941031d5fb91f329c1a1d.tar.bz2 |
lockdown: Fix implicit fallthrough in switch case statement
Allows -Wimplicit-fallthrough to pass in LLVM.
Thanks to @r-barnes for pointing this out.
Diffstat (limited to 'src')
-rw-r--r-- | src/lockdown.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lockdown.c b/src/lockdown.c index a1ad67b..d28316a 100644 --- a/src/lockdown.c +++ b/src/lockdown.c @@ -849,6 +849,7 @@ static lockdownd_error_t pair_record_generate(lockdownd_client_t client, plist_t break; case USERPREF_E_SSL_ERROR: ret = LOCKDOWN_E_SSL_ERROR; + break; default: break; } |