From: Nicholas Clark Date: Thu, 27 Dec 2007 11:35:57 +0000 (+0000) Subject: Remove the last Null(...) from x2p/* X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7d879f32d6bc460c660bdefc13574ab1b05062e9;p=p5sagit%2Fp5-mst-13.2.git Remove the last Null(...) from x2p/* Something tells me that Win32 is compiling x2p with -DPERL_CORE *nix dosn't do this. p4raw-id: //depot/perl@32739 --- diff --git a/x2p/hash.c b/x2p/hash.c index fb743fd..9cc50f8 100644 --- a/x2p/hash.c +++ b/x2p/hash.c @@ -144,6 +144,6 @@ int hiterinit(register HASH *tb) { tb->tbl_riter = -1; - tb->tbl_eiter = Null(HENT*); + tb->tbl_eiter = (HENT*)NULL; return tb->tbl_fill; }