summaryrefslogtreecommitdiff
path: root/tests/test_tile_encoder.c
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2014-02-26 14:00:21 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2014-02-26 14:00:21 +0000
commit7f277fea948958f419f1930da97fa0ebd16953b7 (patch)
tree7c5f76bd75ec16cf366dd2f341e158e3fcb324b1 /tests/test_tile_encoder.c
parent52440cc2e61aa3ec363fe8739b426250e42243bc (diff)
[trunk] Remove some simple warnings about cast, and unused functions
Diffstat (limited to 'tests/test_tile_encoder.c')
-rw-r--r--tests/test_tile_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_tile_encoder.c b/tests/test_tile_encoder.c
index 62becce7..89b5f901 100644
--- a/tests/test_tile_encoder.c
+++ b/tests/test_tile_encoder.c
@@ -132,7 +132,7 @@ int main (int argc, char *argv[])
fprintf(stdout, "Encoding random values -> keep in mind that this is very hard to compress\n");
for (i=0;i<l_data_size;++i) {
- l_data[i] = i; /*rand();*/
+ l_data[i] = (OPJ_BYTE)i; /*rand();*/
}
opj_set_default_encoder_parameters(&l_param);
@@ -226,7 +226,7 @@ int main (int argc, char *argv[])
}
/* should we do j2k or jp2 ?*/
- len = strlen( output_file );
+ len = (unsigned char)strlen( output_file );
if( strcmp( output_file + len - 4, ".jp2" ) == 0 )
{
l_codec = opj_create_compress(OPJ_CODEC_JP2);