diff options
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index 8bde1bd09..20000980b 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -217,7 +217,7 @@ SCM_DEFINE (scm_string_length, "string-length", 1, 0, 0, #define FUNC_NAME s_scm_string_length { SCM_VALIDATE_STRING (1, string); - return SCM_MAKINUM (SCM_STRING_LENGTH (string)); + return SCM_I_MAKINUM (SCM_STRING_LENGTH (string)); } #undef FUNC_NAME |