From 8343229bc4b8ac04e3a15d0645c453da84cab8d8 Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Sun, 30 Sep 2018 16:56:49 -0400 Subject: Use the proper fonst cast Reviewed-by: Richard Levitte Reviewed-by: Viktor Dukhovni --- test/testutil/tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/testutil/tests.c b/test/testutil/tests.c index ba37f0173e..2ba5b9a649 100644 --- a/test/testutil/tests.c +++ b/test/testutil/tests.c @@ -420,7 +420,7 @@ int test_BN_abs_eq_word(const char *file, int line, const char *bns, static const char *print_time(const ASN1_TIME *t) { - return t == NULL ? "" : (char *)ASN1_STRING_get0_data(t); + return t == NULL ? "" : (const char *)ASN1_STRING_get0_data(t); } #define DEFINE_TIME_T_COMPARISON(opname, op) \ -- cgit v1.2.3