From 6cf4326987c78ecc340930b48fce5b324c8d6a4d Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 26 Feb 2011 17:26:21 +0100 Subject: [PATCH] change the ubus signature type to int instead of the enum, as there are possible values not covered by the enum --- libubus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.11.0