diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-27 11:35:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-27 11:35:57 +0000 |
commit | 7d879f32d6bc460c660bdefc13574ab1b05062e9 (patch) | |
tree | 1e6e2749f6de50f035f0f3119218e23b7d0d50bc /x2p | |
parent | 238b27b30e66cbca6d4615d2e20bf4a279a86f89 (diff) | |
download | perl-7d879f32d6bc460c660bdefc13574ab1b05062e9.tar.gz |
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
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x2p/hash.c b/x2p/hash.c index fb743fdbe9..9cc50f8dba 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; } |