From: Jan Dubois Date: Sun, 12 Oct 2003 22:09:39 +0000 (-0700) Subject: Internals::hash_seed() returns wrong value X-Git-Tag: perl-5.9.0~44 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/81eaca17788a9221a27310f8de41fa6679a5a1ee Internals::hash_seed() returns wrong value Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com> p4raw-id: //depot/perl@21441 --- 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); }