diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-04 13:53:31 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-04 13:53:31 +0000 |
commit | 6697f945b90b8b199171a3ed5bcf3750bb48984e (patch) | |
tree | 5c44db931a48c644d111416b268a96474b8b3351 /libguile/gh_data.c | |
parent | d4ea47c8da297c183af3155a1d8a593246ca4b5f (diff) | |
download | guile-6697f945b90b8b199171a3ed5bcf3750bb48984e.tar.gz |
(gh_uniform_vector_length): Use scm_uniform_vector_length instead of
SCM_UVECTOR_LENGTH.
Diffstat (limited to 'libguile/gh_data.c')
-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 c9b762c7c..581f2b3b8 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_UVECTOR_LENGTH (v); + return (unsigned long) scm_uniform_vector_length (v); } /* gets the given element from a uniform vector; ilist is a list (or |