summaryrefslogtreecommitdiff
path: root/libguile/unif.c
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-03-22 12:52:03 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-03-22 12:52:03 +0000
commitbe54b15d85632c1da64f36cc68623b76efc7239e (patch)
treeff34697e889e8e37fc15922f2de70be0e5ce9395 /libguile/unif.c
parent3b9e23a7b6ab9d3628759c3fbaf625f10803e911 (diff)
downloadguile-be54b15d85632c1da64f36cc68623b76efc7239e.tar.gz
* Replace function scm_makstr with new function scm_allocate_string.
Diffstat (limited to 'libguile/unif.c')
-rw-r--r--libguile/unif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/unif.c b/libguile/unif.c
index eb2fcb409..9255abb37 100644
--- a/libguile/unif.c
+++ b/libguile/unif.c
@@ -186,7 +186,7 @@ scm_make_uve (long k, SCM prot)
else if (SCM_CHARP (prot))
{
i = sizeof (char) * k;
- return scm_makstr (i, 0);
+ return scm_allocate_string (i);
}
else if (SCM_INUMP (prot))
{