osdep/macosx: add default switch cases to suppress Wswitch

This commit is contained in:
Kacper Michajłow 2023-11-23 11:20:50 +01:00 committed by sfan5
parent f84024b9dd
commit ab8cc64b19
2 changed files with 4 additions and 0 deletions

View File

@ -292,6 +292,8 @@ void cocoa_set_mpv_handle(struct mpv_handle *ctx)
_ctx = nil;
break;
}
default:
break;
}
}

View File

@ -307,6 +307,8 @@
[self handlePropertyChange:(mpv_event_property *)event->data];
break;
}
default:
break;
}
}