X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-unit.c;h=032915d14ea4d0bbccb552058dc44a5c3fd4cb3c;hb=e55001ebba6f6ad7d63db249f7bf93f25be12acd;hp=2ea59b2913883170185460ad96b96eef81d5e41c;hpb=a255a7f1442590b95a54227636ed0e66398fb4ff;p=elogind.git diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index 2ea59b291..032915d14 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -32,7 +32,7 @@ #include "path-util.h" #include "fileio.h" -const char bus_unit_interface[] _introspect_("Unit") = BUS_UNIT_INTERFACE; +const char bus_unit_interface[] = BUS_UNIT_INTERFACE; #define INVALIDATING_PROPERTIES \ "LoadState\0" \ @@ -627,7 +627,7 @@ void bus_unit_send_change_signal(Unit *u) { assert(u); if (u->in_dbus_queue) { - LIST_REMOVE(Unit, dbus_queue, u->manager->dbus_unit_queue, u); + LIST_REMOVE(dbus_queue, u->manager->dbus_unit_queue, u); u->in_dbus_queue = false; } @@ -801,7 +801,7 @@ DBusHandlerResult bus_unit_queue_job( if (!cl) goto oom; - LIST_PREPEND(JobBusClient, client, j->bus_client_list, cl); + LIST_PREPEND(client, j->bus_client_list, cl); reply = dbus_message_new_method_return(message); if (!reply)