ecore_x: removing useless assignment variable.
authorSrivardhan Hebbar <sri.hebbar@samsung.com>
Tue, 20 Oct 2015 19:24:49 +0000 (12:24 -0700)
committerCedric BAIL <cedric@osg.samsung.com>
Tue, 20 Oct 2015 21:01:15 +0000 (14:01 -0700)
Summary:
Assigning to NULL has no effect in the function calling this. So changed it to void.
Some compiler complain about this kind of construct. It is better to use the (void)
construct for silencing unused parameter with different kind of configure option.

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

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
src/lib/ecore_x/xlib/ecore_x_events.c

index 48af12d..a071d23 100644 (file)
@@ -2120,7 +2120,7 @@ _ecore_x_event_handle_screensaver_notify(XEvent *xevent)
    e->time = screensaver_event->time;
    ecore_event_add(ECORE_X_EVENT_SCREENSAVER_NOTIFY, e, NULL, NULL);
 #else /* ifdef ECORE_XSS */
-   xevent = NULL;
+   (void) xevent;
 #endif /* ifdef ECORE_XSS */
 }