diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-20 21:42:52 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-20 22:38:33 +0200 |
commit | cc7f8ce9b9720e0b615f6eee22e807c3ad1d6c6c (patch) | |
tree | 65a65dcd0cc6f8fd3736d5748323b29d9b6ed5c2 | |
parent | 995b2cd69158a54d3868bcc1e9bab0883dfbf7a7 (diff) | |
download | libayatana-indicator-cc7f8ce9b9720e0b615f6eee22e807c3ad1d6c6c.tar.gz libayatana-indicator-cc7f8ce9b9720e0b615f6eee22e807c3ad1d6c6c.tar.bz2 libayatana-indicator-cc7f8ce9b9720e0b615f6eee22e807c3ad1d6c6c.zip |
libayatana-indicator/indicator-service.c: Avoid error: use of GNU old-style field designator extension.
-rw-r--r-- | libayatana-indicator/indicator-service.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libayatana-indicator/indicator-service.c b/libayatana-indicator/indicator-service.c index 6a281e3..06d5a0e 100644 --- a/libayatana-indicator/indicator-service.c +++ b/libayatana-indicator/indicator-service.c @@ -102,9 +102,9 @@ static void bus_method_call (GDBusConnection * connection, const gchar * sender, static GDBusNodeInfo * node_info = NULL; static GDBusInterfaceInfo * interface_info = NULL; static GDBusInterfaceVTable interface_table = { - method_call: bus_method_call, - get_property: NULL, /* No properties */ - set_property: NULL /* No properties */ + .method_call = bus_method_call, + .get_property = NULL, /* No properties */ + .set_property = NULL /* No properties */ }; /* THE define */ |