evas: filters: add return value in all cases
authorStefan Schmidt <stefan@osg.samsung.com>
Mon, 25 Jul 2016 08:08:40 +0000 (10:08 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Mon, 25 Jul 2016 16:00:42 +0000 (18:00 +0200)
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

index 03ca40a..ae35a4f 100644 (file)
@@ -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;
 }