mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
(gh_uniform_vector_length): Properly use scm_c_uniform_vector_length
instead of scm_uniform_vector_length.
This commit is contained in:
parent
3cc0a2961f
commit
65b39e8ab7
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ gh_vector_length (SCM v)
|
|||
unsigned long
|
||||
gh_uniform_vector_length (SCM v)
|
||||
{
|
||||
return (unsigned long) scm_uniform_vector_length (v);
|
||||
return (unsigned long) scm_c_uniform_vector_length (v);
|
||||
}
|
||||
|
||||
/* gets the given element from a uniform vector; ilist is a list (or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue