summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-08-22 00:14:10 +0000
committerwtc%netscape.com <devnull@localhost>2000-08-22 00:14:10 +0000
commite22e0fa8ef3159686ed1f800d404a47923040c6d (patch)
tree52dbe3685ee18a2429f30962fd2b7597d0ffe2be
parent4be6ffc6da5fea82ec745a31f3b2a0925e3ff3f1 (diff)
downloadnspr-hg-e22e0fa8ef3159686ed1f800d404a47923040c6d.tar.gz
Removed another unnecessary 'const'.
-rw-r--r--lib/ds/plhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ds/plhash.c b/lib/ds/plhash.c
index 9f8ff52a..c5837603 100644
--- a/lib/ds/plhash.c
+++ b/lib/ds/plhash.c
@@ -383,7 +383,7 @@ PR_IMPLEMENT(void *)
PL_HashTableLookupConst(PLHashTable *ht, const void *key)
{
PLHashNumber keyHash;
- PLHashEntry *he, *const *hep;
+ PLHashEntry *he, **hep;
keyHash = (*ht->keyHash)(key);
hep = PL_HashTableRawLookupConst(ht, keyHash, key);