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-scope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/dbus-scope.c') diff --git a/src/core/dbus-scope.c b/src/core/dbus-scope.c index 13ff49d62f..b20b6e7ffe 100644 --- a/src/core/dbus-scope.c +++ b/src/core/dbus-scope.c @@ -31,7 +31,7 @@ static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_result, scope_result, ScopeResu const sd_bus_vtable bus_scope_vtable[] = { SD_BUS_VTABLE_START(0), - SD_BUS_PROPERTY("TimeoutStopUSec", "t", bus_property_get_usec, offsetof(Scope, timeout_stop_usec), 0), + SD_BUS_PROPERTY("TimeoutStopUSec", "t", bus_property_get_usec, offsetof(Scope, timeout_stop_usec), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Scope, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_VTABLE_END }; -- cgit v1.2.3-54-g00ecf