diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-02-24 14:27:02 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-02-24 14:27:02 +0000 |
| commit | 963283d7d0c89bf097c3be4b123c8e58d9d306c0 (patch) | |
| tree | 3793e299dde4c96c2dccef309cf0374bec0d0887 /tests/unit/testempty2.c | |
| parent | c91044a4a7e4ff909848f17c506e633a6d6f4746 (diff) | |
[trunk] Fix warning about signed/unsigned mismatch
Diffstat (limited to 'tests/unit/testempty2.c')
| -rw-r--r-- | tests/unit/testempty2.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/unit/testempty2.c b/tests/unit/testempty2.c index e342e015..dbbbaf93 100644 --- a/tests/unit/testempty2.c +++ b/tests/unit/testempty2.c @@ -58,15 +58,15 @@ int main(int argc, char *argv[]) const char * v = opj_version(); const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY; - int numcomps = 1; + unsigned int numcomps = 1; int i; - int image_width = 256; - int image_height = 256; + unsigned int image_width = 256; + unsigned int image_height = 256; opj_cparameters_t parameters; - int subsampling_dx = parameters.subsampling_dx; - int subsampling_dy = parameters.subsampling_dy; + unsigned int subsampling_dx; + unsigned int subsampling_dy; const char outputfile[] = "testempty2.j2k"; opj_image_cmptparm_t cmptparm; @@ -80,6 +80,8 @@ int main(int argc, char *argv[]) opj_set_default_encoder_parameters(¶meters); parameters.cod_format = J2K_CFMT; puts(v); + subsampling_dx = (unsigned int)parameters.subsampling_dx; + subsampling_dy = (unsigned int)parameters.subsampling_dy; cmptparm.prec = 8; cmptparm.bpp = 8; cmptparm.sgnd = 0; |
