Summary: This fixes Coverity CID1267461 where the pointer to the
interface shape_input_reset function was being assigned multiple
times. It looks like this is just a copy/paste error.
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
iface->shape_input_rectangle_subtract = _ecore_evas_x11_shape_input_rectangle_subtract;
iface->shape_input_empty = _ecore_evas_x11_shape_input_empty;
iface->shape_input_reset = _ecore_evas_x11_shape_input_reset;
- iface->shape_input_reset = _ecore_evas_x11_shape_input_apply;
+ iface->shape_input_apply = _ecore_evas_x11_shape_input_apply;
return iface;
}