From: Hoyub Lee Date: Tue, 10 Oct 2017 02:44:04 +0000 (+0900) Subject: tpl_tbm: Add missing break in switch X-Git-Tag: accepted/tizen/4.0/unified/20171017.211349~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ea9301e61353e4fca715d96365bba9d1229c068;p=platform%2Fcore%2Fuifw%2Flibtpl-egl.git tpl_tbm: Add missing break in switch Change-Id: I3e76e96634cc7f3e9d4ed3973d945f8d08e84358 Signed-off-by: Hoyub Lee --- diff --git a/src/tpl_tbm.c b/src/tpl_tbm.c index 50154e5..0c64ee2 100644 --- a/src/tpl_tbm.c +++ b/src/tpl_tbm.c @@ -376,6 +376,7 @@ __tpl_tbm_surface_create_swapchain(tpl_surface_t *surface, present_mode); return TPL_ERROR_INVALID_PARAMETER; } + break; default: TPL_ERR("Unsupported present mode: %d", present_mode); return TPL_ERROR_INVALID_PARAMETER;