1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-30 11:09:23 +00:00

(Fccl_execute): Cast ccl_driver parameters to `unsigned

char *' instead of `char *'.
This commit is contained in:
Eli Zaretskii 2001-01-02 14:20:09 +00:00
parent 1883b2c6c0
commit b428fdfdc1

View File

@ -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);