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-path.c | |
parent | df98a87ba389bdfc0359beedf47557411f3af434 (diff) |
bus: decorate the various object vtables with SD_BUS_VTABLE_PROPERTY_CONST where appropriate
Diffstat (limited to 'src/core/dbus-path.c')
-rw-r--r-- | src/core/dbus-path.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/dbus-path.c b/src/core/dbus-path.c index cf1de44d85..36c4e0f72c 100644 --- a/src/core/dbus-path.c +++ b/src/core/dbus-path.c @@ -79,10 +79,10 @@ static int property_get_unit( const sd_bus_vtable bus_path_vtable[] = { SD_BUS_VTABLE_START(0), - SD_BUS_PROPERTY("Unit", "s", property_get_unit, 0, 0), - SD_BUS_PROPERTY("Paths", "a(ss)", property_get_paths, 0, 0), - SD_BUS_PROPERTY("MakeDirectory", "b", bus_property_get_bool, offsetof(Path, make_directory), 0), - SD_BUS_PROPERTY("DirectoryMode", "u", bus_property_get_mode, offsetof(Path, directory_mode), 0), + SD_BUS_PROPERTY("Unit", "s", property_get_unit, 0, SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("Paths", "a(ss)", property_get_paths, 0, SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("MakeDirectory", "b", bus_property_get_bool, offsetof(Path, make_directory), SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("DirectoryMode", "u", bus_property_get_mode, offsetof(Path, directory_mode), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Path, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_VTABLE_END }; |