diff options
author | Srivardhan Hebbar <sri.hebbar@samsung.com> | 2015-10-20 12:24:49 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-10-20 14:01:15 -0700 |
commit | a3ff6aff618449255ca660e0fe7329c3668740bd (patch) | |
tree | d4a376f0bcbe6e6248c893308d9fa91806c51371 | |
parent | 6bd863cf4ffb46f0267e96844cea37a95599e9de (diff) | |
download | efl-a3ff6aff618449255ca660e0fe7329c3668740bd.tar.gz |
ecore_x: removing useless assignment variable.
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>
-rw-r--r-- | src/lib/ecore_x/xlib/ecore_x_events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_x/xlib/ecore_x_events.c b/src/lib/ecore_x/xlib/ecore_x_events.c index 48af12d3e8..a071d23a05 100644 --- a/src/lib/ecore_x/xlib/ecore_x_events.c +++ b/src/lib/ecore_x/xlib/ecore_x_events.c @@ -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 */ } |