diff options
Diffstat (limited to 'libguile/gh_data.c')
-rw-r--r-- | libguile/gh_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gh_data.c b/libguile/gh_data.c index 9c210425c..d8bc87b47 100644 --- a/libguile/gh_data.c +++ b/libguile/gh_data.c @@ -87,7 +87,7 @@ gh_str2scm (char *s, int len) return scm_makfromstr (s, len, 0); } SCM -gh_str02scm (char *s) +gh_str02scm (const char *s) { return scm_makfrom0str (s); } |