diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2019-06-16 16:38:56 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-06-16 16:40:08 +0200 |
commit | 9b53201d9c53cd7021455ac9748b3dba744b468b (patch) | |
tree | a9ed2346b11322cb4ff63771dfa3cd3541a4ba4e /package/system/urngd | |
parent | 22d3d91c774f085fbbe607b96c39398c73f7151c (diff) | |
download | upstream-9b53201d9c53cd7021455ac9748b3dba744b468b.tar.gz upstream-9b53201d9c53cd7021455ac9748b3dba744b468b.tar.bz2 upstream-9b53201d9c53cd7021455ac9748b3dba744b468b.zip |
urngd: Fix wrong type in format string
GCC 9.1 complains about this wrong type used in the format string, fix
this to make the compiler happy.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/system/urngd')
-rw-r--r-- | package/system/urngd/patches/001-fix-compile.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/system/urngd/patches/001-fix-compile.patch b/package/system/urngd/patches/001-fix-compile.patch new file mode 100644 index 0000000000..c9ab6857bb --- /dev/null +++ b/package/system/urngd/patches/001-fix-compile.patch @@ -0,0 +1,11 @@ +--- a/urngd.c ++++ b/urngd.c +@@ -114,7 +114,7 @@ static size_t gather_entropy(struct urng + + 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", + ret, sizeof(buf)); + } else { + ret = sizeof(buf); |