From: Eli Zaretskii Date: Tue, 2 Jan 2001 14:20:09 +0000 (+0000) Subject: (Fccl_execute): Cast ccl_driver parameters to `unsigned X-Git-Tag: emacs-pretest-21.0.95~179 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b428fdfdc1922c30fe20da29454a8ad3a1931246;p=emacs.git (Fccl_execute): Cast ccl_driver parameters to `unsigned char *' instead of `char *'. --- diff --git a/src/ccl.c b/src/ccl.c index 2be97ba88af..bd9c7d4debe 100644 --- a/src/ccl.c +++ b/src/ccl.c @@ -1992,7 +1992,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program.") ? XINT (XVECTOR (reg)->contents[i]) : 0); - ccl_driver (&ccl, (char *)0, (char *)0, 0, 0, (int *)0); + ccl_driver (&ccl, (unsigned char *)0, (unsigned char *)0, 0, 0, (int *)0); QUIT; if (ccl.status != CCL_STAT_SUCCESS) error ("Error in CCL program at %dth code", ccl.ic);