systray: fixed wrong struct initializer.
authorDaniel Juyung Seo <seojuyung2@gmail.com>
Sat, 19 Jul 2014 16:59:31 +0000 (01:59 +0900)
committerDaniel Juyung Seo <seojuyung2@gmail.com>
Sat, 19 Jul 2014 16:59:31 +0000 (01:59 +0900)
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

index dbf1a3f3254dda1c20404bfcffc7ac0ae10be4da..6aa340dacb8527631c280fd74be0c05a4cb548aa 100644 (file)
@@ -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,
 };
 // =============================================================================