change the ubus signature type to int instead of the enum, as there are possible...
authorFelix Fietkau <nbd@openwrt.org>
Sat, 26 Feb 2011 16:26:21 +0000 (17:26 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 26 Feb 2011 16:26:21 +0000 (17:26 +0100)
libubus.h

index 8b5085a..b58a4dc 100644 (file)
--- a/libubus.h
+++ b/libubus.h
@@ -49,7 +49,7 @@ typedef void (*ubus_complete_handler_t)(struct ubus_request *req, int ret);
        }
 
 struct ubus_signature {
-       enum blobmsg_type type;
+       int type;
        const char *name;
 };