From 10149f68a5c6cb9783ed7595998985d7e586e871 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 11 May 2015 21:05:34 +0200 Subject: cocoa: add missing break statements in switch The first one (for VOCTRL_GET_DISPLAY_FPS) could have led to undefined behavior if the FPS was unknown. The second is for general symmetry. --- video/out/cocoa_common.m | 2 ++ 1 file changed, 2 insertions(+) (limited to 'video') diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m index 14d1458994..7a0e6429de 100644 --- a/video/out/cocoa_common.m +++ b/video/out/cocoa_common.m @@ -782,11 +782,13 @@ int vo_cocoa_control(struct vo *vo, int *events, int request, void *arg) *(double *)arg = vo->cocoa->screen_fps; return VO_TRUE; } + break; case VOCTRL_GET_AMBIENT_LUX: if (vo->cocoa->light_sensor != IO_OBJECT_NULL) { *(int *)arg = vo->cocoa->last_lux; return VO_TRUE; } + break; } return VO_NOTIMPL; } -- cgit v1.2.3