aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index d573738754a..b7aacfa8dca 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -552,7 +552,7 @@ x_cr_accumulate_data (void *closure, const unsigned char *data,
552{ 552{
553 Lisp_Object *acc = (Lisp_Object *) closure; 553 Lisp_Object *acc = (Lisp_Object *) closure;
554 554
555 *acc = Fcons (make_unibyte_string (data, length), *acc); 555 *acc = Fcons (make_unibyte_string ((char const *) data, length), *acc);
556 556
557 return CAIRO_STATUS_SUCCESS; 557 return CAIRO_STATUS_SUCCESS;
558} 558}