seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=e956ce2980feada292ace6ba59708985ec854dc3

commit e956ce2980feada292ace6ba59708985ec854dc3
Author: Daniel Juyung Seo <[email protected]>
Date:   Sun Jul 20 01:59:31 2014 +0900

    systray: fixed wrong struct initializer.
    
    This fixes the following build warning.
    
    elm_systray.c:294:1: warning: excess elements in struct initializer
    [enabled by default]
    elm_systray.c:294:1: warning: (near initialization for '_iface_desc')
    [enabled by default]
---
 src/lib/elm_systray.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_systray.c b/src/lib/elm_systray.c
index dbf1a3f..6aa340d 100644
--- a/src/lib/elm_systray.c
+++ b/src/lib/elm_systray.c
@@ -290,7 +290,7 @@ static const Eldbus_Property properties[] = {
 };
 
 static const Eldbus_Service_Interface_Desc _iface_desc = {
-     INTERFACE, methods, signals, properties, NULL, NULL, NULL
+     INTERFACE, methods, signals, properties, NULL, NULL,
 };
 // 
=============================================================================
 

-- 


Reply via email to