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.
This commit is contained in:
Stefan Schmidt 2016-07-25 10:08:40 +02:00
parent 8be8f8cbd3
commit d922a556b4
1 changed files with 2 additions and 0 deletions

View 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;
}