stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d922a556b4f6ee8310df6a7b3858152c55b7ca68
commit d922a556b4f6ee8310df6a7b3858152c55b7ca68 Author: Stefan Schmidt <[email protected]> Date: Mon Jul 25 10:08:40 2016 +0200 evas: filters: add return value in all cases Function with non-void return value so we need to add a return in all cases. Thanks to gcc for complaining here. --- src/lib/evas/filters/evas_filter_blur.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/evas/filters/evas_filter_blur.c b/src/lib/evas/filters/evas_filter_blur.c index 03ca40a..ae35a4f 100644 --- a/src/lib/evas/filters/evas_filter_blur.c +++ b/src/lib/evas/filters/evas_filter_blur.c @@ -425,4 +425,6 @@ evas_filter_blur_cpu_func_get(Evas_Filter_Command *cmd) CRI("Unsupported blur type %d", cmd->blur.type); return NULL; } + + return NULL; } --
