Re: [patch] time_t printf in zsh

2016-02-21 Thread Jérémie Courrèges-Anglas
j...@wxcvbn.org (Jérémie Courrèges-Anglas) writes: > Matthew Martin writes: > >> zsh printf's a time_t as a long. The cast is so that I can send the >> same patch upstream (assuming that casting to long long is the correct >> fix). Bug found with clang. > > It looks like zsh does not assume long

Re: [patch] time_t printf in zsh

2016-02-21 Thread Jérémie Courrèges-Anglas
Matthew Martin writes: > zsh printf's a time_t as a long. The cast is so that I can send the > same patch upstream (assuming that casting to long long is the correct > fix). Bug found with clang. It looks like zsh does not assume long long and %lld support, so more work might be needed for an u

[patch] time_t printf in zsh

2016-02-20 Thread Matthew Martin
zsh printf's a time_t as a long. The cast is so that I can send the same patch upstream (assuming that casting to long long is the correct fix). Bug found with clang. - Matthew Martin Index: patches/patch-Src_Builtins_sched_c === R