summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 2c1d09ac43e..0fc3198b773 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1805,7 +1805,7 @@ make_multibyte_string (contents, nchars, nbytes)
Lisp_Object
make_string_from_bytes (contents, nchars, nbytes)
- char *contents;
+ const char *contents;
int nchars, nbytes;
{
register Lisp_Object val;
@@ -1824,7 +1824,7 @@ make_string_from_bytes (contents, nchars, nbytes)
Lisp_Object
make_specified_string (contents, nchars, nbytes, multibyte)
- char *contents;
+ const char *contents;
int nchars, nbytes;
int multibyte;
{