Re: loadables/strptime type problem

2025-07-28 Thread Chet Ramey
On 7/27/25 6:22 PM, Christian Weisgerber wrote: In bash 5.3, the newly added examples/loadables/strptime.c uses the %ld format specifier to printf() time_t values. At least on OpenBSD time_t is long long, which causes a type mismatch between format specifier and argument. Thanks for the report

loadables/strptime type problem

2025-07-27 Thread Christian Weisgerber
In bash 5.3, the newly added examples/loadables/strptime.c uses the %ld format specifier to printf() time_t values. At least on OpenBSD time_t is long long, which causes a type mismatch between format specifier and argument. The same sort of problem in finfo.c was fixed for 5.3 by passing the val