diff options
| author | Eli Zaretskii | 2001-01-02 14:20:09 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-01-02 14:20:09 +0000 |
| commit | b428fdfdc1922c30fe20da29454a8ad3a1931246 (patch) | |
| tree | 5ad530d6963023b7870e2231e04f4387e64e5832 /src | |
| parent | 1883b2c6c0119feadd09ea57ed950722307f047d (diff) | |
| download | emacs-b428fdfdc1922c30fe20da29454a8ad3a1931246.tar.gz emacs-b428fdfdc1922c30fe20da29454a8ad3a1931246.zip | |
(Fccl_execute): Cast ccl_driver parameters to `unsigned
char *' instead of `char *'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ccl.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1992,7 +1992,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program.") | |||
| 1992 | ? XINT (XVECTOR (reg)->contents[i]) | 1992 | ? XINT (XVECTOR (reg)->contents[i]) |
| 1993 | : 0); | 1993 | : 0); |
| 1994 | 1994 | ||
| 1995 | ccl_driver (&ccl, (char *)0, (char *)0, 0, 0, (int *)0); | 1995 | ccl_driver (&ccl, (unsigned char *)0, (unsigned char *)0, 0, 0, (int *)0); |
| 1996 | QUIT; | 1996 | QUIT; |
| 1997 | if (ccl.status != CCL_STAT_SUCCESS) | 1997 | if (ccl.status != CCL_STAT_SUCCESS) |
| 1998 | error ("Error in CCL program at %dth code", ccl.ic); | 1998 | error ("Error in CCL program at %dth code", ccl.ic); |