summaryrefslogtreecommitdiff
path: root/libguile/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/strings.c')
-rw-r--r--libguile/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strings.c b/libguile/strings.c
index 35733e66d..872cdc33b 100644
--- a/libguile/strings.c
+++ b/libguile/strings.c
@@ -186,7 +186,7 @@ SCM
scm_makfromstr (const char *src, scm_sizet len, int dummy)
{
SCM s = scm_makstr (len, 0);
- char *dst = SCM_CHARS (s);
+ char *dst = SCM_STRING_CHARS (s);
while (len--)
*dst++ = *src++;