diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h index 86f81fc89e8..dd2d8aa8c90 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -564,7 +564,7 @@ extern int iso_charset_table[2][2][128]; | |||
| 564 | #define CHAR_STRING(c, workbuf, str) \ | 564 | #define CHAR_STRING(c, workbuf, str) \ |
| 565 | (SINGLE_BYTE_CHAR_P (c) \ | 565 | (SINGLE_BYTE_CHAR_P (c) \ |
| 566 | ? *(str = workbuf) = (unsigned char)(c), 1 \ | 566 | ? *(str = workbuf) = (unsigned char)(c), 1 \ |
| 567 | : non_ascii_char_to_string (c, workbuf, &str)) | 567 | : non_ascii_char_to_string (c, workbuf, (unsigned char **)&str)) |
| 568 | 568 | ||
| 569 | /* Return a character code of the character of which multi-byte form | 569 | /* Return a character code of the character of which multi-byte form |
| 570 | is at STR and the length is LEN. If STR doesn't contain valid | 570 | is at STR and the length is LEN. If STR doesn't contain valid |