diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-01-23 00:51:11 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-01-23 00:57:58 +0100 |
commit | 3d3d03479d5b4a976cf1320d29f4bd4937d5a4ba (patch) | |
tree | 287d83ed36ba719cb656ab3d033fb50ead2209e5 /package/utils/ucode/Makefile | |
parent | af8a059bb41dd7afee49ce9a5d52e9a8e010bbd8 (diff) | |
download | upstream-3d3d03479d5b4a976cf1320d29f4bd4937d5a4ba.tar.gz upstream-3d3d03479d5b4a976cf1320d29f4bd4937d5a4ba.tar.bz2 upstream-3d3d03479d5b4a976cf1320d29f4bd4937d5a4ba.zip |
ucode: add temporary fix for integer formatting on 32bit systems
The ucode VM always passes 64bit integer values to sprintf implementation
while the `%d` format expects 32bit integers on 32bit platforms, leading
to incorrect formatting results.
Temporarily solve the issue by casting the numeric argument to int until
a more thorough fix arrives with the next update.
Fixes: FS#4234
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/utils/ucode/Makefile')
-rw-r--r-- | package/utils/ucode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/utils/ucode/Makefile b/package/utils/ucode/Makefile index 2c11fe05be..beafb94bb4 100644 --- a/package/utils/ucode/Makefile +++ b/package/utils/ucode/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ucode -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=https://github.com/jow-/ucode.git |