summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/f_int.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/f_int.c')
-rw-r--r--src/lib/libcrypto/asn1/f_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/f_int.c b/src/lib/libcrypto/asn1/f_int.c
index 41e0e75226..283860d72d 100644
--- a/src/lib/libcrypto/asn1/f_int.c
+++ b/src/lib/libcrypto/asn1/f_int.c
@@ -65,7 +65,7 @@ int
65i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a) 65i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a)
66{ 66{
67 int i, n = 0; 67 int i, n = 0;
68 static const char *h = "0123456789ABCDEF"; 68 static const char h[] = "0123456789ABCDEF";
69 char buf[2]; 69 char buf[2];
70 70
71 if (a == NULL) 71 if (a == NULL)