aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1998-04-08 06:50:18 +0000
committerKarl Heuer1998-04-08 06:50:18 +0000
commit54c182d14b007869300e12e0f6e491daf09eff0b (patch)
treea0ccc070e27c1cf6b083cf1292451116569903d7 /src
parentb9ca50003b347a6018cc6e91b4e501e023f05dfa (diff)
downloademacs-54c182d14b007869300e12e0f6e491daf09eff0b.tar.gz
emacs-54c182d14b007869300e12e0f6e491daf09eff0b.zip
(CHAR_STRING): Cast to unsigned char ** explicitly.
Diffstat (limited to 'src')
-rw-r--r--src/charset.h2
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