Change 32739 by [EMAIL PROTECTED] on 2007/12/27 11:35:57
Remove the last Null(...) from x2p/*
Something tells me that Win32 is compiling x2p with -DPERL_CORE
*nix dosn't do this.
Affected files ...
... //depot/perl/x2p/hash.c#19 edit
Differences ...
==== //depot/perl/x2p/hash.c#19 (text) ====
Index: perl/x2p/hash.c
--- perl/x2p/hash.c#18~32723~ 2007-12-25 07:05:33.000000000 -0800
+++ perl/x2p/hash.c 2007-12-27 03:35:57.000000000 -0800
@@ -144,6 +144,6 @@
hiterinit(register HASH *tb)
{
tb->tbl_riter = -1;
- tb->tbl_eiter = Null(HENT*);
+ tb->tbl_eiter = (HENT*)NULL;
return tb->tbl_fill;
}
End of Patch.