aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2007-01-13 21:47:31 +0000
committerEli Zaretskii <[email protected]>2007-01-13 21:47:31 +0000
commit9bd1cd35febc3cdb8d244c42fad136c496cafdaf (patch)
treed1003e2a89df27ea725314bd1fa47a93ea2e1557 /src/fns.c
parent3aef3c0adf9e581ef032890ed245045bb0af0e70 (diff)
(maybe_resize_hash_table): Copy new size of hash table into EMACS_INT to avoid
GCC warnings.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index f65375438f..1297e18f29 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4668,6 +4668,7 @@ maybe_resize_hash_table (h)
{
int old_size = HASH_TABLE_SIZE (h);
int i, new_size, index_size;
+ EMACS_INT nsize;
if (INTEGERP (h->rehash_size))
new_size = old_size + XFASTINT (h->rehash_size);
@@ -4677,7 +4678,10 @@ maybe_resize_hash_table (h)
index_size = next_almost_prime ((int)
(new_size
/ XFLOATINT (h->rehash_threshold)));
- if (max (index_size, 2 * new_size) > MOST_POSITIVE_FIXNUM)
+ /* Assignment to EMACS_INT stops GCC whining about limited range
+ of data type. */
+ nsize = max (index_size, 2 * new_size);
+ if (nsize > MOST_POSITIVE_FIXNUM)
error ("Hash table too large to resize");
h->key_and_value = larger_vector (h->key_and_value, 2 * new_size, Qnil);