diff options
author | Bruce Momjian | 2001-05-03 19:20:24 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-05-03 19:20:24 +0000 |
commit | 3f8e21c34a330635e0914c9e5667c097b1f232f1 (patch) | |
tree | 688a3cd7d3f1e5a2f1961bd1ac205481429772f0 /src/test/locale | |
parent | 2792374cff361a7a4ec0e750b5fa935d85afc9ac (diff) |
apply a little patch:
Oleg Bartunov
Diffstat (limited to 'src/test/locale')
-rw-r--r-- | src/test/locale/test-ctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/locale/test-ctype.c b/src/test/locale/test-ctype.c index 93358bf9de4..8cf5e17da7f 100644 --- a/src/test/locale/test-ctype.c +++ b/src/test/locale/test-ctype.c @@ -39,7 +39,7 @@ flag(int b) void describe_char(int c) { - char cp = c, + unsigned char cp = c, up = toupper(c), lo = tolower(c); |