From: komainu8 Date: Sun, 11 Jun 2017 13:38:05 +0000 (+0900) Subject: Modify type of variable in OPENSSL_cpuid_setup function X-Git-Tag: OpenSSL_1_1_1-pre1~1295 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=6ea3bca427b3e759939a63555821d0c4678dd79c 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) --- 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;