Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-06-20 23:00:00 +0400
committerAdam Langley <agl@chromium.org>2014-06-21 00:17:36 +0400
commit735107652b0df9941d60f4259e15150962ca34bb (patch)
tree46014eb8f570ee70868584da82c54e4f59523319 /crypto/asn1
parent858a88daf27975f67d9f63e18f95645be2886bfb (diff)
Const correctness.
This change fixes a number of build warnings.
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/tasn_prn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/tasn_prn.c b/crypto/asn1/tasn_prn.c
index 7b10cfee..4eb522db 100644
--- a/crypto/asn1/tasn_prn.c
+++ b/crypto/asn1/tasn_prn.c
@@ -353,7 +353,7 @@ int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
fname = tt->field_name;
if(flags & ASN1_TFLG_SK_MASK)
{
- char *tname;
+ const char *tname;
ASN1_VALUE *skitem;
STACK_OF(ASN1_VALUE) *stack;