From: Chris Michael Date: Tue, 30 May 2017 14:59:25 +0000 (-0400) Subject: ecore-drm2: Remove useless return X-Git-Tag: upstream/1.20.0~863 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac2c82b87116a11aaac2e200cdfb60b716059171;p=platform%2Fupstream%2Fefl.git ecore-drm2: Remove useless return This 'return' statement here is just useless as the code can fall through and the function will return 0 anwyay. Signed-off-by: Chris Michael --- diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c b/src/lib/ecore_drm2/ecore_drm2_fb.c index f2c54e3..59e2c5a 100644 --- a/src/lib/ecore_drm2/ecore_drm2_fb.c +++ b/src/lib/ecore_drm2/ecore_drm2_fb.c @@ -524,7 +524,6 @@ _fb_flip(Ecore_Drm2_Output *output) { output->next.fb = fb; _ecore_drm2_fb_ref(output->next.fb); - return 0; } return 0;