[trunk] Fix two simple warnings about sign mismatch

This commit is contained in:
Mathieu Malaterre 2014-02-24 14:50:40 +00:00
parent 963283d7d0
commit f38e29d00a
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ int main(int argc, char *argv[])
const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY;
unsigned int numcomps = 1;
int i;
unsigned int i;
unsigned int image_width = 256;
unsigned int image_height = 256;

View File

@ -59,7 +59,7 @@ int main(int argc, char *argv[])
const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY;
unsigned int numcomps = 1;
int i;
unsigned int i;
unsigned int image_width = 256;
unsigned int image_height = 256;