From 6ea3bca427b3e759939a63555821d0c4678dd79c Mon Sep 17 00:00:00 2001 From: komainu8 Date: Sun, 11 Jun 2017 22:38:05 +0900 Subject: [PATCH] Modify type of variable in OPENSSL_cpuid_setup function CLA: trivial Reviewed-by: Kurt Roeckx Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3651) --- crypto/armcap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/armcap.c b/crypto/armcap.c index 29534845d1..baa2d3d257 100644 --- a/crypto/armcap.c +++ b/crypto/armcap.c @@ -97,7 +97,7 @@ static unsigned long (*getauxval) (unsigned long) = NULL; void OPENSSL_cpuid_setup(void) { - char *e; + const char *e; struct sigaction ill_oact, ill_act; sigset_t oset; static int trigger = 0; -- 2.25.1