Skip to content

Commit edbc70f

Browse files
committed
nogmtimeoff
1 parent 0272c12 commit edbc70f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/POSIX/POSIX.xs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3605,7 +3605,7 @@ strftime(fmt, sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = -1)
36053605
struct tm mytm;
36063606
time_t then = 1741510800 - 1;
36073607
mytm = *localtime(&then);
3608-
DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Return from localtime for %ld= tm_sec=%d, tm_min=%d, tm_hour=%d, tm_mday=%d, tm_mon=%d, tm_year=%d, isdst=%d gmtoff=%ld, tm_zone=%s\n", then, mytm.tm_sec, mytm.tm_min, mytm.tm_hour, mytm.tm_mday, mytm.tm_mon, mytm.tm_year, mytm.tm_isdst, mytm.tm_gmtoff, mytm.tm_zone));
3608+
DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Return from localtime for %ld= tm_sec=%d, tm_min=%d, tm_hour=%d, tm_mday=%d, tm_mon=%d, tm_year=%d, isdst=%d gmtoff=%%ld, tm_zone=%%s\n", then, mytm.tm_sec, mytm.tm_min, mytm.tm_hour, mytm.tm_mday, mytm.tm_mon, mytm.tm_year, mytm.tm_isdst)); //, mytm.tm_gmtoff, mytm.tm_zone));
36093609
DEBUG_Lv(PerlIO_printf(Perl_debug_log, "POSIX::strftime: Calling ints_to_tm: tm_sec=%d, tm_min=%d, tm_hour=%d, tm_mday=%d, tm_mon=%d, tm_year=%d, isdst=%d\n", sec, min, hour, mday, mon, year, isdst));
36103610
SV *sv = sv_strftime_ints(fmt, sec, min, hour, mday, mon, year,
36113611
isdst);

0 commit comments

Comments
 (0)