diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-02-17 23:51:21 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-02-17 23:51:21 +0000 |
commit | 68244b6fd4360f53c5d2c57d52fbd16ccabdca47 (patch) | |
tree | 1555f1f1dc214d7e410de436796aea41c3ab1713 /pango/mini-xft/minixftstr.c | |
parent | 00e23413132cf41f5bdad8c93697bcef71401486 (diff) | |
download | pango-PANGO_0_25.tar.gz |
Version 0.25PANGO_0_25
Sun Feb 17 18:50:30 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 0.25
* configure.in: Add X_EXTRA_LIBS to XFT_LIBS.
* NEWS: Updates
* pango/mini-xft/minixftdpy.c
* pango/mini-xft/minixftstr.c: Fix some problems
with signed arguments to to isupper()/tolower().
(#71705, Morten Welinder)
Diffstat (limited to 'pango/mini-xft/minixftstr.c')
-rw-r--r-- | pango/mini-xft/minixftstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/mini-xft/minixftstr.c b/pango/mini-xft/minixftstr.c index afa22338..b07ed881 100644 --- a/pango/mini-xft/minixftstr.c +++ b/pango/mini-xft/minixftstr.c @@ -136,7 +136,7 @@ _MiniXftMatchSymbolic (MiniXftSymbolic *s, int n, const char *name, int def) int _MiniXftStrCmpIgnoreCase (const char *s1, const char *s2) { - char c1, c2; + unsigned char c1, c2; for (;;) { |