projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bb5765
)
There isn't PTR2INT(), there's PTR2IV().
author
Jarkko Hietaniemi
<jhi@iki.fi>
Sun, 2 Dec 2001 01:05:43 +0000
(
01:05
+0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Sun, 2 Dec 2001 01:05:43 +0000
(
01:05
+0000)
p4raw-id: //depot/perl@13423
ext/Time/HiRes/HiRes.xs
patch
|
blob
|
history
diff --git
a/ext/Time/HiRes/HiRes.xs
b/ext/Time/HiRes/HiRes.xs
index
781444a
..
4981741
100644
(file)
--- a/
ext/Time/HiRes/HiRes.xs
+++ b/
ext/Time/HiRes/HiRes.xs
@@
-560,7
+560,7
@@
BOOT:
#ifdef HAS_GETTIMEOFDAY
{
UV auv[2];
- hv_store(PL_modglobal, "Time::NVtime", 12, newSViv(PTR2I
NT
(myNVtime)), 0);
+ hv_store(PL_modglobal, "Time::NVtime", 12, newSViv(PTR2I
V
(myNVtime)), 0);
if (myU2time(auv) == 0)
hv_store(PL_modglobal, "Time::U2time", 12, newSViv((IV) auv[0]), 0);
}