mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-11 19:53:52 -08:00
Fixed typo
This commit is contained in:
parent
19d3e6ace5
commit
90174a13e1
1 changed files with 1 additions and 1 deletions
|
|
@ -441,7 +441,7 @@ cl__make_hash_table(cl_object test, cl_object size, cl_object rehash_size,
|
|||
hsize = fix(size);
|
||||
t = type_of(rehash_size);
|
||||
if ((t != t_fixnum && t != t_shortfloat && t != t_longfloat) ||
|
||||
(number_compare(rehash_size, MAKE_FIXNUM(1)) < 0))
|
||||
(number_compare(rehash_size, MAKE_FIXNUM(1)) < 0)) {
|
||||
FEerror("~S is an illegal hash-table rehash-size.",
|
||||
1, rehash_size);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue