diff options
author | komainu8 <spasgate870@movie.ocn.ne.jp> | 2017-06-11 15:38:05 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-06-16 22:58:51 +0200 |
commit | 6ea3bca427b3e759939a63555821d0c4678dd79c (patch) | |
tree | f0c82b8f157cf831074721254fe1e3efafe5c64b /crypto/armcap.c | |
parent | Add output routines to allow consistent formatting of memory, strings (diff) | |
download | openssl-6ea3bca427b3e759939a63555821d0c4678dd79c.tar.xz openssl-6ea3bca427b3e759939a63555821d0c4678dd79c.zip |
Modify type of variable in OPENSSL_cpuid_setup function
CLA: trivial
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3651)
Diffstat (limited to 'crypto/armcap.c')
-rw-r--r-- | crypto/armcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |