diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-02 22:47:14 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-02 22:47:14 +0000 |
commit | 7dab4b370ca85e35e2c938d45e30c97e564d541b (patch) | |
tree | 4992ff997d6f414836f43c2472fc58df91c9a7a7 /libguile/pairs.c | |
parent | 1938c6dab7aee860c45ab6aa8bfa4c6a0875eac7 (diff) | |
download | guile-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.
Diffstat (limited to 'libguile/pairs.c')
-rw-r--r-- | libguile/pairs.c | 2 |
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 { |