evas/evas_op_mul_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267468, 1267471
This commit is contained in:
Stefan Schmidt 2015-06-09 10:13:06 +02:00
parent 9df111d766
commit 0da6dbb159
1 changed files with 0 additions and 2 deletions

View File

@ -103,7 +103,6 @@ mul_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_mul_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -200,7 +199,6 @@ mul_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_mul_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}