From 54bf23151f1730cfc69cd06bec4589c768ab3d67 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 6 Nov 2018 12:08:07 +0100 Subject: [PATCH] random-util: we don't intend to write to auxv, hence make it const --- src/basic/random-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/random-util.c b/src/basic/random-util.c index aa04cc23185..23951c01811 100644 --- a/src/basic/random-util.c +++ b/src/basic/random-util.c @@ -142,7 +142,7 @@ void initialize_srand(void) { static bool srand_called = false; unsigned x; #if HAVE_SYS_AUXV_H - void *auxv; + const void *auxv; #endif if (srand_called) @@ -153,7 +153,7 @@ void initialize_srand(void) { * try to make use of that to seed the pseudo-random generator. It's * better than nothing... */ - auxv = (void*) getauxval(AT_RANDOM); + auxv = (const void*) getauxval(AT_RANDOM); if (auxv) { assert_cc(sizeof(x) <= 16); memcpy(&x, auxv, sizeof(x)); -- 2.47.3