libubus: use explicit type name in ubus_msghdr_data instead of typeof()
authorFelix Fietkau <nbd@openwrt.org>
Thu, 3 Jul 2014 18:58:37 +0000 (20:58 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 3 Jul 2014 18:58:37 +0000 (20:58 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
libubus-internal.h

index f6d850f..0eddf9e 100644 (file)
@@ -20,7 +20,7 @@ extern const struct ubus_method watch_method;
 static inline struct blob_attr *
 ubus_msghdr_data(struct ubus_msghdr *hdr)
 {
-       struct ubus_msghdr_buf *hdrbuf = container_of(hdr, typeof(*hdrbuf), hdr);
+       struct ubus_msghdr_buf *hdrbuf = container_of(hdr, struct ubus_msghdr_buf, hdr);
        return hdrbuf->data;
 }