From 6697f945b90b8b199171a3ed5bcf3750bb48984e Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Thu, 4 Nov 2004 13:53:31 +0000 Subject: [PATCH] (gh_uniform_vector_length): Use scm_uniform_vector_length instead of SCM_UVECTOR_LENGTH. --- libguile/gh_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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