Actions
Bug #4133
closedUnexpected result of Time#strftime("%s") on Windows with trunk
Description
=begin
C:\work>ruby -ve 'p Time.now.strftime("%s")'
ruby 1.9.3dev (2010-12-07 trunk 30123) [i386-mswin32_90]
"0000000000000000000000000000000000000000000000000000001291790065"
C:\work>ruby -ve 'p Time.now.strftime("%s")'
ruby 1.9.2p0 (2010-08-18) [i386-mingw32]
"1291790125"
It seems that this bug is due to r29741.
In my inspect, PRI_TIMET_PREFIX is now defined as "I64" instead of "ll" in line#395 of strftime.c:
FMT('0', 1, PRI_TIMET_PREFIX"d", sec);
=end
Actions
Like0
Like0Like0