# HG changeset patch # User Bruno Haible # Date 1240178777 -7200 # Node ID 679ae1d73e0bd72322b31c4451553b2522a144b8 # Parent f4b420294f4b83e56a505f43c81f14452c10ffc6 Avoid a compiler warning. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-04-19 Bruno Haible + + Avoid a compiler warning. + * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file): + Change type of variable 'sequence'. + 2009-04-19 Bruno Haible * modules/configmake (Makefile.am): When the contents of configmake.h diff --git a/tests/uninorm/test-u32-normalize-big.c b/tests/uninorm/test-u32-normalize-big.c --- a/tests/uninorm/test-u32-normalize-big.c +++ b/tests/uninorm/test-u32-normalize-big.c @@ -224,7 +224,7 @@ for (line_index = 0; line_index < p->lines_length; line_index++) { - const unsigned int *sequence = p->lines[line_index].sequences[0]; + const uint32_t *sequence = p->lines[line_index].sequences[0]; /* In part 1, every sequences[0] consists of a single character. */ if (!(sequence[0] != 0 && sequence[1] == 0)) abort ();