Project

General

Profile

Actions

Bug #4133

closed

Unexpected result of Time#strftime("%s") on Windows with trunk

Added by phasis68 (Heesob Park) over 13 years ago. Updated almost 13 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 1.9.3dev (2010-12-07 trunk 30123) [i386-mswin32_90]
Backport:
[ruby-core:33634]

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

Also available in: Atom PDF

Like0
Like0Like0