aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2019-06-16 18:59:04 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2019-06-16 19:03:04 +0200
commit1ae1276eab1903d194c1a0f8037e7f44304568b1 (patch)
treefb0b9a76bb8828a5ca64bfcd13b9263af9e4f12d
parent1e3800df1808b4a5a977c3a9651958611df51c83 (diff)
downloadupstream-1ae1276eab1903d194c1a0f8037e7f44304568b1.tar.gz
upstream-1ae1276eab1903d194c1a0f8037e7f44304568b1.tar.bz2
upstream-1ae1276eab1903d194c1a0f8037e7f44304568b1.zip
urngd: Fix more wrong type in format string
Also the other type is worng and causes compile problems on ARM64 platforms. Fixes: 9b53201d9c53 ("urngd: Fix wrong type in format string") Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/system/urngd/patches/001-fix-compile.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/urngd/patches/001-fix-compile.patch b/package/system/urngd/patches/001-fix-compile.patch
index c9ab6857bb..0b08e9917b 100644
--- a/package/system/urngd/patches/001-fix-compile.patch
+++ b/package/system/urngd/patches/001-fix-compile.patch
@@ -5,7 +5,7 @@
ret = write_entropy(u, buf, sizeof(buf), ENTROPYBYTES);
if (sizeof(buf) != ret) {
- ERROR("injected %lub of entropy, less then %db expected\n",
-+ ERROR("injected %zub of entropy, less then %db expected\n",
++ ERROR("injected %zub of entropy, less then %zub expected\n",
ret, sizeof(buf));
} else {
ret = sizeof(buf);