X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=blobmsg_json.c;h=8997214e9e9581b94c2000b10005e6e3b0262646;hp=6a6014b1f9837dd8537b4d845b4b8bf768859cd8;hb=dc8c37fa8b9d198a8744ae5e1bc76a36ed617f89;hpb=81839e259a5de56b6eaa487e53eda1ac29ab1c59 diff --git a/blobmsg_json.c b/blobmsg_json.c index 6a6014b..8997214 100644 --- a/blobmsg_json.c +++ b/blobmsg_json.c @@ -213,7 +213,7 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo sprintf(buf, "%d", *(uint32_t *)data); break; case BLOBMSG_TYPE_INT64: - sprintf(buf, "%lld", *(uint64_t *)data); + sprintf(buf, "%lld", (long long int) *(uint64_t *)data); break; case BLOBMSG_TYPE_STRING: blobmsg_format_string(s, data);