[trunk] Fix two simple warnings about sign mismatch
This commit is contained in:
parent
963283d7d0
commit
f38e29d00a
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue