From 1ad8fb62d65b985310f916d681bde83e1b8055f0 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Thu, 11 Apr 1996 19:26:47 +0000 Subject: (ihash_add): New name of nextprime. --- libihash/ihash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libihash') diff --git a/libihash/ihash.c b/libihash/ihash.c index 43be0550..90dd12f3 100644 --- a/libihash/ihash.c +++ b/libihash/ihash.c @@ -1,6 +1,6 @@ /* Integer-keyed hash table functions. - Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -172,7 +172,7 @@ ihash_add(ihash_t ht, int id, void *item, void ***locp) void ****old_locps = ht->locps; int *old_ids = ht->ids; - ht->size = nextprime (2 * old_size); + ht->size = _ihash_nextprime (2 * old_size); ht->tab = malloc(ht->size * sizeof (void *)); ht->locps = malloc (ht->size * sizeof (void ***)); ht->ids = malloc (ht->size * sizeof (int)); -- cgit v1.2.3