From 81eaca17788a9221a27310f8de41fa6679a5a1ee Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Sun, 12 Oct 2003 15:09:39 -0700 Subject: [PATCH] Internals::hash_seed() returns wrong value Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com> p4raw-id: //depot/perl@21441 --- universal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/universal.c b/universal.c index 22841bb..3a646ea 100644 --- a/universal.c +++ b/universal.c @@ -913,6 +913,6 @@ XS(XS_Internals_hash_seed) /* Using dXSARGS would also have dITEM and dSP, * which define 2 unused local variables. */ dMARK; dAX; - XSRETURN_UV(PL_hash_seed); + XSRETURN_UV(PERL_HASH_SEED); } -- 2.7.4