* lib/parse-datetime.y (parse_datetime2): Fix format typo in
previous patch to this file. Problem reported by Chris Elvidge in
<https://bugs.gnu.org/44763#32>.
2020-11-21 Paul Eggert <eggert@cs.ucla.edu>
+ parse-datetime: fix printf format typo
+ * lib/parse-datetime.y (parse_datetime2): Fix format typo in
+ previous patch to this file. Problem reported by Chris Elvidge in
+ <https://bugs.gnu.org/44763#32>.
+
setlocale-null-tests: work around GCC bug 44511
* tests/test-setlocale_null-mt-all.c:
* tests/test-setlocale_null-mt-one.c:
"%+"PRIdMAX" seconds, %+d ns),\n"),
pc.rel.hour, pc.rel.minutes, pc.rel.seconds,
pc.rel.ns);
- dbg_printf (_(" new time = %"PRIdMAX" epoch-seconds\n"), t4);
+ intmax_t t4i = t4;
+ dbg_printf (_(" new time = %"PRIdMAX" epoch-seconds\n"), t4i);
/* Warn about crossing DST due to time adjustment.
Example: https://bugs.gnu.org/8357