chiark / gitweb /
bus: protected dual timestamp property macro for misusage
authorLennart Poettering <lennart@poettering.net>
Fri, 22 Nov 2013 19:19:54 +0000 (20:19 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 22 Nov 2013 19:19:54 +0000 (20:19 +0100)
src/libsystemd-bus/bus-util.h

index 38533be66d3d8186f205c2502b015944204e1257..20739a92bd1fcdb8c92c2878bfaea6a12e9fc99e 100644 (file)
@@ -168,7 +168,7 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(sd_bus_message*, sd_bus_message_unref);
         struct __useless_struct_to_allow_trailing_semicolon__
 
 #define BUS_PROPERTY_DUAL_TIMESTAMP(name, offset, flags) \
-        SD_BUS_PROPERTY(name, "t", bus_property_get_usec, offset + offsetof(struct dual_timestamp, realtime), flags), \
-        SD_BUS_PROPERTY(name "Monotonic", "t", bus_property_get_usec, offset + offsetof(struct dual_timestamp, monotonic), flags)
+        SD_BUS_PROPERTY(name, "t", bus_property_get_usec, (offset) + offsetof(struct dual_timestamp, realtime), (flags)), \
+        SD_BUS_PROPERTY(name "Monotonic", "t", bus_property_get_usec, (offset) + offsetof(struct dual_timestamp, monotonic), (flags))
 
 int bus_maybe_reply_error(sd_bus_message *m, int r, sd_bus_error *error);