summaryrefslogtreecommitdiff
path: root/x2p
diff options
context:
space:
mode:
authorJim Cromie <jcromie@cpan.org>2007-12-24 22:39:30 -0700
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2007-12-25 15:05:33 +0000
commit2421bbdb1200baaa9a87b6227e6892a09430146a (patch)
tree119f98666f9b0cf8f61d7ce050723036990034fd /x2p
parentabf0ed0d390b1c5427bc1ae98a11af04d7b7c389 (diff)
downloadperl-2421bbdb1200baaa9a87b6227e6892a09430146a.tar.gz
patch - chg 32721 missed a couple Nullstrs
Message-ID: <4770FA02.2080800@gmail.com> p4raw-id: //depot/perl@32723
Diffstat (limited to 'x2p')
-rw-r--r--x2p/hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/x2p/hash.c b/x2p/hash.c
index 8c218b69e5..fb743fdbe9 100644
--- a/x2p/hash.c
+++ b/x2p/hash.c
@@ -25,7 +25,7 @@ hfetch(register HASH *tb, char *key)
register HENT *entry;
if (!tb)
- return Nullstr;
+ return NULL;
for (s=key, i=0, hash = 0;
/* while */ *s;
s++, i++, hash *= 5) {
@@ -39,7 +39,7 @@ hfetch(register HASH *tb, char *key)
continue;
return entry->hent_val;
}
- return Nullstr;
+ return NULL;
}
bool