From d922a556b4f6ee8310df6a7b3858152c55b7ca68 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 25 Jul 2016 10:08:40 +0200 Subject: [PATCH] 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 03ca40af8c..ae35a4f0b2 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; }