change the ubus signature type to int instead of the enum, as there are possible...
[project/ubus.git] / 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;
 };