diff options
author | Daniel Juyung Seo <seojuyung2@gmail.com> | 2014-07-20 01:59:31 +0900 |
---|---|---|
committer | Daniel Juyung Seo <seojuyung2@gmail.com> | 2014-07-20 01:59:31 +0900 |
commit | e956ce2980feada292ace6ba59708985ec854dc3 (patch) | |
tree | 68998658b3d1cfaf3fd39fc31be03a815c4fcda9 /src/lib | |
parent | 146344b9b3584348249ee4023cedee1bbd2dd4c4 (diff) |
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]
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elm_systray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_systray.c b/src/lib/elm_systray.c index dbf1a3f32..6aa340dac 100644 --- a/src/lib/elm_systray.c +++ b/src/lib/elm_systray.c | |||
@@ -290,7 +290,7 @@ static const Eldbus_Property properties[] = { | |||
290 | }; | 290 | }; |
291 | 291 | ||
292 | static const Eldbus_Service_Interface_Desc _iface_desc = { | 292 | static const Eldbus_Service_Interface_Desc _iface_desc = { |
293 | INTERFACE, methods, signals, properties, NULL, NULL, NULL | 293 | INTERFACE, methods, signals, properties, NULL, NULL, |
294 | }; | 294 | }; |
295 | // ============================================================================= | 295 | // ============================================================================= |
296 | 296 | ||