From 556089dc57b10a12a03edd3d3e90ca17398ad206 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 22 Dec 2013 02:24:05 +0100 Subject: bus: decorate the various object vtables with SD_BUS_VTABLE_PROPERTY_CONST where appropriate --- src/core/dbus-job.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/dbus-job.c') diff --git a/src/core/dbus-job.c b/src/core/dbus-job.c index 8c12b52b64..6489348fb2 100644 --- a/src/core/dbus-job.c +++ b/src/core/dbus-job.c @@ -72,9 +72,9 @@ static int method_cancel(sd_bus *bus, sd_bus_message *message, void *userdata, s const sd_bus_vtable bus_job_vtable[] = { SD_BUS_VTABLE_START(0), SD_BUS_METHOD("Cancel", NULL, NULL, method_cancel, 0), - SD_BUS_PROPERTY("Id", "u", NULL, offsetof(Job, id), 0), - SD_BUS_PROPERTY("Unit", "(so)", property_get_unit, 0, 0), - SD_BUS_PROPERTY("JobType", "s", property_get_type, offsetof(Job, type), 0), + SD_BUS_PROPERTY("Id", "u", NULL, offsetof(Job, id), SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("Unit", "(so)", property_get_unit, 0, SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("JobType", "s", property_get_type, offsetof(Job, type), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_PROPERTY("State", "s", property_get_state, offsetof(Job, state), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_VTABLE_END }; -- cgit v1.2.3-54-g00ecf