ecore_x: removing useless assignment pointer.

Summary:
The assignment to size has no effect on the caller and compiler
complain about it. Do shutdown compiler complain in a more reliable
way.

Signed-off-by:
Srivardhan Hebbar <sri.hebbar@samsung.com>

Reviewers: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D3156

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Srivardhan Hebbar 2015-10-12 13:24:44 -07:00 committed by Cedric BAIL
parent 2136ad5ecb
commit 412d311830
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ ecore_x_cursor_size_set(int size)
XcursorSetDefaultSize(_ecore_x_disp, size);
if (_ecore_xlib_sync) ecore_x_sync();
#else /* ifdef ECORE_XCURSOR */
size = 0;
(void) size;
#endif /* ifdef ECORE_XCURSOR */
}