* tests/test-posixtm.c (main): Convert two 'time_t' values to 'long' for
printing.
+2021-02-08 Bruno Haible <bruno@clisp.org>
+
+ posixtm tests: Fix warnings seen on MidnightBSD/x86.
+ * tests/test-posixtm.c (main): Convert two 'time_t' values to 'long' for
+ printing.
+
2021-02-07 Bruno Haible <bruno@clisp.org>
Add cross-compilation guesses for MidnightBSD.
if (t_out != t_exp)
{
printf ("%s mismatch (-: actual; +:expected)\n-%12ld\n+%12ld\n",
- T[i].in, t_out, t_exp);
+ T[i].in, (long) t_out, (long) t_exp);
fail = 1;
}
}