summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-06-12 15:20:01 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-06-12 15:20:01 +0000
commitbbc93a92c3c34a9da3236a0906a6062898e0193d (patch)
tree3283ef076d6e047450b3f2cb18c59245e029c8d0 /tests
parentdd7ec3c82fc0a73bb1b1b6a2f70efdd913f80f2b (diff)
downloadpango-bbc93a92c3c34a9da3236a0906a6062898e0193d.tar.gz
Use unsigned char for bitfield array. (#83257, David L. Cooper II)
Wed Jun 12 11:19:08 2002 Owen Taylor <otaylor@redhat.com> * modules/tamil/tamil-x.c: Use unsigned char for bitfield array. (#83257, David L. Cooper II) * tests/gen-all-unicode.c (main): Used char, not guchar for array of characters. (#83258, David L. Cooper II.)
Diffstat (limited to 'tests')
-rw-r--r--tests/gen-all-unicode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gen-all-unicode.c b/tests/gen-all-unicode.c
index 2ce37fd6..90ff4dbd 100644
--- a/tests/gen-all-unicode.c
+++ b/tests/gen-all-unicode.c
@@ -16,7 +16,7 @@ main (int argc, char **argv)
{
if (g_unichar_validate (i))
{
- guchar buffer[7];
+ gchar buffer[7];
int len = g_unichar_to_utf8 (i, buffer);
buffer[len] = '\0';