X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=lua%2Fubus.c;h=77624d73e38693ebaabedc3f351db763fba0421c;hp=cbda37a5fd3e2dec65a4f1d58c0aa9717decba47;hb=bf566871bd6a633e4504c60c6fc55b2a97305a50;hpb=7c140855d965598f2907454740c7a051dbee0176 diff --git a/lua/ubus.c b/lua/ubus.c index cbda37a..77624d7 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -67,7 +67,6 @@ ubus_lua_parse_blob(lua_State *L, struct blob_attr *attr, bool table) int len; int off = 0; void *data; - char buf[32]; if (!blobmsg_check_attr(attr, false)) return 0; @@ -96,9 +95,7 @@ ubus_lua_parse_blob(lua_State *L, struct blob_attr *attr, bool table) break; case BLOBMSG_TYPE_INT64: - /* NB: Lua cannot handle 64bit, format value as string and push that */ - sprintf(buf, "%lld", (long long int) be64_to_cpu(*(uint64_t *)data)); - lua_pushstring(L, buf); + lua_pushnumber(L, (double) be64_to_cpu(*(uint64_t *)data)); break; case BLOBMSG_TYPE_STRING: