More long long casts for printing time_t
authortb <tb@openbsd.org>
Mon, 5 Sep 2022 21:08:08 +0000 (21:08 +0000)
committertb <tb@openbsd.org>
Mon, 5 Sep 2022 21:08:08 +0000 (21:08 +0000)
regress/lib/libcrypto/asn1/rfc5280time.c

index f9b561e..cad407c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: rfc5280time.c,v 1.5 2022/09/05 21:06:31 tb Exp $ */
+/* $OpenBSD: rfc5280time.c,v 1.6 2022/09/05 21:08:08 tb Exp $ */
 /*
  * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
  * Copyright (c) 2015 Bob Beck <beck@opebsd.org>
@@ -273,14 +273,14 @@ rfc5280_gentime_test(int test_no, struct rfc5280_time_test *att)
 
        if ((i = X509_cmp_time(gt, &att->time)) != -1) {
                fprintf(stderr, "FAIL: test %d - X509_cmp_time failed - returned %d compared to %lld\n",
-                   test_no, i, att->time);
+                   test_no, i, (long long)att->time);
                goto done;
        }
 
        att->time--;
        if ((i = X509_cmp_time(gt, &att->time)) != 1) {
                fprintf(stderr, "FAIL: test %d - X509_cmp_time failed - returned %d compared to %lld\n",
-                   test_no, i, att->time);
+                   test_no, i, (long long)att->time);
                goto done;
        }
        att->time++;