aboutsummaryrefslogtreecommitdiff
path: root/crypto/random-platform.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2019-03-13 19:33:48 -0700
committerRichard Henderson <richard.henderson@linaro.org>2019-05-22 12:38:54 -0400
commitd049b1f2afddd2d3a7b2ed22c274c66305c0b84b (patch)
tree61f74c2bf3412874c784be5ad43754f029952a7d /crypto/random-platform.c
parentdb1ed1abcf4b219d9824e4a6ae5f9ae364f8d009 (diff)
downloadqemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.zip
qemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.tar.gz
qemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.tar.bz2
crypto: Change the qcrypto_random_bytes buffer type to void*
Using uint8_t* merely requires useless casts for use with other types to be filled with randomness. Reviewed-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'crypto/random-platform.c')
-rw-r--r--crypto/random-platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/random-platform.c b/crypto/random-platform.c
index cb3ca1b..6662410 100644
--- a/crypto/random-platform.c
+++ b/crypto/random-platform.c
@@ -64,8 +64,8 @@ int qcrypto_random_init(Error **errp)
return 0;
}
-int qcrypto_random_bytes(uint8_t *buf G_GNUC_UNUSED,
- size_t buflen G_GNUC_UNUSED,
+int qcrypto_random_bytes(void *buf,
+ size_t buflen,
Error **errp)
{
#ifdef _WIN32