summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-11-02 22:47:14 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-11-02 22:47:14 +0000
commit7dab4b370ca85e35e2c938d45e30c97e564d541b (patch)
tree4992ff997d6f414836f43c2472fc58df91c9a7a7
parent1938c6dab7aee860c45ab6aa8bfa4c6a0875eac7 (diff)
downloadguile-7dab4b370ca85e35e2c938d45e30c97e564d541b.tar.gz
(scm_i_chase_pairs): Replace scm_t_bits with scm_t_uint32 to fix the
mismatch between the function declaration and definition.
-rw-r--r--libguile/pairs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/pairs.c b/libguile/pairs.c
index cf2782a06..03610f292 100644
--- a/libguile/pairs.c
+++ b/libguile/pairs.c
@@ -101,7 +101,7 @@ scm_cdr (SCM pair)
}
SCM
-scm_i_chase_pairs (SCM tree, scm_t_bits pattern)
+scm_i_chase_pairs (SCM tree, scm_t_uint32 pattern)
{
do
{