diff options
Diffstat (limited to 'lib/libcrypto/asn1/f_int.c')
-rw-r--r-- | lib/libcrypto/asn1/f_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/f_int.c b/lib/libcrypto/asn1/f_int.c index 41e0e752264..283860d72d5 100644 --- a/lib/libcrypto/asn1/f_int.c +++ b/lib/libcrypto/asn1/f_int.c @@ -65,7 +65,7 @@ int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a) { int i, n = 0; - static const char *h = "0123456789ABCDEF"; + static const char h[] = "0123456789ABCDEF"; char buf[2]; if (a == NULL) |