summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2002-04-23 22:27:07 +0000
committerGurusamy Sarathy <gsar@cpan.org>2002-04-23 22:27:07 +0000
commitb5ded3e5070e86dde1a5404c8ccb04bdba12e7d9 (patch)
treedfc2fe5616d57116219e7879035af91cdab05cb4 /Configure
parente05321a691e9ea6133713ebfcecc5e0fa6ff56d1 (diff)
downloadperl-b5ded3e5070e86dde1a5404c8ccb04bdba12e7d9.tar.gz
Configure test for byteorder loses bits
p4raw-id: //depot/perl@16111
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 88492fdc9c..51ecb8d746 100755
--- a/Configure
+++ b/Configure
@@ -16166,7 +16166,7 @@ int main()
} u;
if ($uvsize > 4)
- u.l = (0x08070605L << 32) | 0x04030201L;
+ u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
else
u.l = 0x04030201L;
for (i = 0; i < $uvsize; i++)