From: Felix Fietkau Date: Sat, 26 Feb 2011 16:26:21 +0000 (+0100) Subject: change the ubus signature type to int instead of the enum, as there are possible... X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=commitdiff_plain;h=6cf4326987c78ecc340930b48fce5b324c8d6a4d;hp=4a3bb66cd415b1c11ec69590699fed16eddd7bbb;ds=sidebyside change the ubus signature type to int instead of the enum, as there are possible values not covered by the enum --- diff --git a/libubus.h b/libubus.h index 8b5085a..b58a4dc 100644 --- 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; };