diff options
| author | Paul Eggert | 2011-02-05 02:20:15 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-05 02:20:15 -0800 |
| commit | 25a48bd06bd5979d201cddde99e2dec1eb54c184 (patch) | |
| tree | aef22df016ceb89400520afb0a2a323ec9dc43f1 /src/xfont.c | |
| parent | d154c079dd429eb5b641139152e7714bfddca519 (diff) | |
| download | emacs-25a48bd06bd5979d201cddde99e2dec1eb54c184.tar.gz emacs-25a48bd06bd5979d201cddde99e2dec1eb54c184.zip | |
xstrcasecmp: conform to C89 pointer rules
Diffstat (limited to 'src/xfont.c')
| -rw-r--r-- | src/xfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfont.c b/src/xfont.c index 51b1c1c6ded..222b4d9edf9 100644 --- a/src/xfont.c +++ b/src/xfont.c | |||
| @@ -164,8 +164,8 @@ xfont_get_cache (FRAME_PTR f) | |||
| 164 | static int | 164 | static int |
| 165 | compare_font_names (const void *name1, const void *name2) | 165 | compare_font_names (const void *name1, const void *name2) |
| 166 | { | 166 | { |
| 167 | return xstrcasecmp (*(const unsigned char **) name1, | 167 | return xstrcasecmp (*(const char **) name1, |
| 168 | *(const unsigned char **) name2); | 168 | *(const char **) name2); |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | /* Decode XLFD as iso-8859-1 into OUTPUT, and return the byte length | 171 | /* Decode XLFD as iso-8859-1 into OUTPUT, and return the byte length |