summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2012-01-28 15:12:47 +0000
committerÆvar Arnfjörð Bjarmason <avar@cpan.org>2012-02-11 22:21:26 +0000
commita748fe11f70695552294fe4e31343b2dacb59db2 (patch)
tree072179d93ef71348dd1ed37cf4134e10bba6977a
parent27f00e3d3ab119f7ef8f547e70d739672e381ebd (diff)
downloadperl-a748fe11f70695552294fe4e31343b2dacb59db2.tar.gz
Ammend comment referring to init_tm() to point to its correct location
-rw-r--r--ext/POSIX/POSIX.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs
index 3e23433c13..7e30a82839 100644
--- a/ext/POSIX/POSIX.xs
+++ b/ext/POSIX/POSIX.xs
@@ -1763,7 +1763,7 @@ asctime(sec, min, hour, mday, mon, year, wday = 0, yday = 0, isdst = -1)
{
dXSTARG;
struct tm mytm;
- init_tm(&mytm); /* XXX workaround - see init_tm() above */
+ init_tm(&mytm); /* XXX workaround - see init_tm() in core util.c */
mytm.tm_sec = sec;
mytm.tm_min = min;
mytm.tm_hour = hour;