summaryrefslogtreecommitdiff
path: root/test/asn1_time_test.c
diff options
context:
space:
mode:
authorJ.W. Jagersma <jwjagersma@gmail.com>2022-10-01 18:41:44 +0200
committerHugo Landau <hlandau@openssl.org>2022-11-14 07:47:53 +0000
commit1555c86e5f7e3c46b4f696ed665c2f988976b81f (patch)
treef7f131a40e8f3f4ea2e24206ad7762a00fd7f0c0 /test/asn1_time_test.c
parent43086b1bd48958ce95fadba8459ad88675da4fdf (diff)
downloadopenssl-new-1555c86e5f7e3c46b4f696ed665c2f988976b81f.tar.gz
Cast values to match printf format strings.
For some reason djgpp uses '(unsigned) long int' for (u)int32_t. This causes errors with -Werror=format, even though these types are in practice identical. Obvious solution: cast to the types indicated by the format string. For asn1_time_test.c I changed the format string to %lli since time_t may be 'long long' some platforms. Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19322)
Diffstat (limited to 'test/asn1_time_test.c')
-rw-r--r--test/asn1_time_test.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/asn1_time_test.c b/test/asn1_time_test.c
index b222b44091..3344b76eae 100644
--- a/test/asn1_time_test.c
+++ b/test/asn1_time_test.c
@@ -434,8 +434,10 @@ static int convert_asn1_to_time_t(int idx)
testdateutc = ossl_asn1_string_to_time_t(asn1_to_utc[idx].input);
if (!TEST_time_t_eq(testdateutc, asn1_to_utc[idx].expected)) {
- TEST_info("ossl_asn1_string_to_time_t (%s) failed: expected %li, got %li\n",
- asn1_to_utc[idx].input, asn1_to_utc[idx].expected, (signed long) testdateutc);
+ TEST_info("ossl_asn1_string_to_time_t (%s) failed: expected %lli, got %lli\n",
+ asn1_to_utc[idx].input,
+ (long long int)asn1_to_utc[idx].expected,
+ (long long int)testdateutc);
return 0;
}
return 1;