diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-12-22 02:24:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-12-22 03:50:52 +0100 |
commit | 556089dc57b10a12a03edd3d3e90ca17398ad206 (patch) | |
tree | caeaa4e7a0c3d22cf1c0ffaa257403112558ae9c /src/core/dbus-snapshot.c | |
parent | df98a87ba389bdfc0359beedf47557411f3af434 (diff) |
bus: decorate the various object vtables with SD_BUS_VTABLE_PROPERTY_CONST where appropriate
Diffstat (limited to 'src/core/dbus-snapshot.c')
-rw-r--r-- | src/core/dbus-snapshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-snapshot.c b/src/core/dbus-snapshot.c index a54dc8cf89..053e35cc06 100644 --- a/src/core/dbus-snapshot.c +++ b/src/core/dbus-snapshot.c @@ -45,6 +45,6 @@ int bus_snapshot_method_remove(sd_bus *bus, sd_bus_message *message, void *userd const sd_bus_vtable bus_snapshot_vtable[] = { SD_BUS_VTABLE_START(0), SD_BUS_METHOD("Remove", NULL, NULL, bus_snapshot_method_remove, 0), - SD_BUS_PROPERTY("Cleanup", "b", bus_property_get_bool, offsetof(Snapshot, cleanup), 0), + SD_BUS_PROPERTY("Cleanup", "b", bus_property_get_bool, offsetof(Snapshot, cleanup), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_VTABLE_END }; |