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]
This commit is contained in:
Daniel Juyung Seo 2014-07-20 01:59:31 +09:00
parent fb09956f86
commit 8d74e140c4
1 changed files with 1 additions and 1 deletions

View 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,
};
// =============================================================================