Commit 8343229b authored by Christos Zoulas's avatar Christos Zoulas Committed by Viktor Dukhovni
Browse files

Use the proper fonst cast

parent 82f518ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ? "<null>" : (char *)ASN1_STRING_get0_data(t);
    return t == NULL ? "<null>" : (const char *)ASN1_STRING_get0_data(t);
}

#define DEFINE_TIME_T_COMPARISON(opname, op)                            \