diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2019-06-16 18:59:04 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-06-16 19:03:04 +0200 |
commit | 1ae1276eab1903d194c1a0f8037e7f44304568b1 (patch) | |
tree | fb0b9a76bb8828a5ca64bfcd13b9263af9e4f12d /package/system | |
parent | 1e3800df1808b4a5a977c3a9651958611df51c83 (diff) | |
download | upstream-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>
Diffstat (limited to 'package/system')
-rw-r--r-- | package/system/urngd/patches/001-fix-compile.patch | 2 |
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); |