(mu_address_get_count): Fixed type of "count" variable
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -121,7 +121,7 @@ SCM_DEFINE (mu_address_get_count, "mu-address-get-count", 1, 0, 0, | ... | @@ -121,7 +121,7 @@ SCM_DEFINE (mu_address_get_count, "mu-address-get-count", 1, 0, 0, |
121 | #define FUNC_NAME s_mu_address_get_count | 121 | #define FUNC_NAME s_mu_address_get_count |
122 | { | 122 | { |
123 | address_t addr; | 123 | address_t addr; |
124 | int count = 0; | 124 | size_t count = 0; |
125 | 125 | ||
126 | SCM_ASSERT (SCM_NIMP (ADDRESS) && SCM_STRINGP (ADDRESS), | 126 | SCM_ASSERT (SCM_NIMP (ADDRESS) && SCM_STRINGP (ADDRESS), |
127 | ADDRESS, SCM_ARG1, FUNC_NAME); | 127 | ADDRESS, SCM_ARG1, FUNC_NAME); | ... | ... |
-
Please register or sign in to post a comment