diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-09 22:10:59 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-09 22:10:59 +0000 |
commit | 65b39e8ab74e204f7c26fd010e1e6435b832765c (patch) | |
tree | e115efb97ba2435c2082459b26332849f4714e49 | |
parent | 3cc0a2961f941db000d5b19742e6c38d10288a22 (diff) | |
download | guile-65b39e8ab74e204f7c26fd010e1e6435b832765c.tar.gz |
(gh_uniform_vector_length): Properly use scm_c_uniform_vector_length
instead of scm_uniform_vector_length.
-rw-r--r-- | libguile/gh_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gh_data.c b/libguile/gh_data.c index 581f2b3b8..ca70b173b 100644 --- a/libguile/gh_data.c +++ b/libguile/gh_data.c @@ -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 |