From: Leonard Date: Thu, 12 Apr 2018 19:31:19 +0000 (+0200) Subject: ISO-C compatibility: Remove empty initializer (#8713) X-Git-Tag: v239~418 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d579a56c397a1aeaa490032a9f7aabd82124f1c8;p=thirdparty%2Fsystemd.git ISO-C compatibility: Remove empty initializer (#8713) ISO-C doesn't allow empty initializers, so replace it by explicitly initializing to zero. Also add braces because x is a union and we initialize a subobject, so a compiler might warn about suggesting braces. Shut that up. --- diff --git a/src/systemd/sd-bus-vtable.h b/src/systemd/sd-bus-vtable.h index f6fb40fbb53..425e38e2e25 100644 --- a/src/systemd/sd-bus-vtable.h +++ b/src/systemd/sd-bus-vtable.h @@ -157,8 +157,7 @@ struct sd_bus_vtable { { \ .type = _SD_BUS_VTABLE_END, \ .flags = 0, \ - .x = { \ - }, \ + .x = { { 0 } }, \ } _SD_END_DECLARATIONS;