cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a3ff6aff618449255ca660e0fe7329c3668740bd

commit a3ff6aff618449255ca660e0fe7329c3668740bd
Author: Srivardhan Hebbar <sri.heb...@samsung.com>
Date:   Tue Oct 20 12:24:49 2015 -0700

    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.heb...@samsung.com>
    
    Reviewers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D3180
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/lib/ecore_x/xlib/ecore_x_events.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore_x/xlib/ecore_x_events.c 
b/src/lib/ecore_x/xlib/ecore_x_events.c
index 48af12d..a071d23 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 */
 }
 

-- 


Reply via email to