diff options
author | Ronny Chevalier <rchevalier@aldebaran-robotics.com> | 2013-04-08 18:22:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-08 18:27:55 +0200 |
commit | d4b7fecb051142404da6bf587c1796a6de768990 (patch) | |
tree | 133c9f22f48028425af2e6d61f35055061c6293a /src/core/dbus-manager.c | |
parent | 974efc46586854b1f23ccf153b36199c77919de6 (diff) |
dbus-manager: fix variable type introspection
Diffstat (limited to 'src/core/dbus-manager.c')
-rw-r--r-- | src/core/dbus-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 75a341fce1..c23709c2b6 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -290,8 +290,8 @@ " <property name=\"DefaultControllers\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"DefaultStandardOutput\" type=\"s\" access=\"read\"/>\n" \ " <property name=\"DefaultStandardError\" type=\"s\" access=\"read\"/>\n" \ - " <property name=\"RuntimeWatchdogUSec\" type=\"s\" access=\"readwrite\"/>\n" \ - " <property name=\"ShutdownWatchdogUSec\" type=\"s\" access=\"readwrite\"/>\n" \ + " <property name=\"RuntimeWatchdogUSec\" type=\"t\" access=\"readwrite\"/>\n" \ + " <property name=\"ShutdownWatchdogUSec\" type=\"t\" access=\"readwrite\"/>\n" \ " <property name=\"Virtualization\" type=\"s\" access=\"read\"/>\n" #define BUS_MANAGER_INTERFACE_END \ |