diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2016-08-18 17:48:33 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2016-08-18 18:20:36 +0200 |
commit | 095d2f0f8a11f8785eb8451dd8eeee60bebece20 (patch) | |
tree | e2088640247b60e2fedc0a0688fa3a3b1de4a287 /crypto/asn1/f_string.c | |
parent | Simplify indentation of DECLARE_ and IMPLEMENT_ lines (diff) | |
download | openssl-095d2f0f8a11f8785eb8451dd8eeee60bebece20.tar.xz openssl-095d2f0f8a11f8785eb8451dd8eeee60bebece20.zip |
Constify i2a*
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/asn1/f_string.c')
-rw-r--r-- | crypto/asn1/f_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/f_string.c b/crypto/asn1/f_string.c index 0e03139344..b9258bba8b 100644 --- a/crypto/asn1/f_string.c +++ b/crypto/asn1/f_string.c @@ -13,7 +13,7 @@ #include <openssl/buffer.h> #include <openssl/asn1.h> -int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type) +int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type) { int i, n = 0; static const char *h = "0123456789ABCDEF"; |