diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2012-09-27 14:48:47 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2012-09-27 14:48:47 +0000 |
| commit | a540dcd2e24907ac612e88fa8ab144f86eeb08f6 (patch) | |
| tree | 4ff7f7cd8565fa63744f9281e39a68c81e3edbd5 | |
| parent | 58b2c6c4a5a8bcc9712e1d52f1fb8edd60036dd2 (diff) | |
correct a warning in image.c
| -rw-r--r-- | libopenjpeg/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopenjpeg/image.c b/libopenjpeg/image.c index baebc2a2..c9ae8216 100644 --- a/libopenjpeg/image.c +++ b/libopenjpeg/image.c @@ -32,7 +32,7 @@ opj_image_t* opj_image_create0(void) { } opj_image_t* OPJ_CALLCONV opj_image_create(OPJ_UINT32 numcmpts, opj_image_cmptparm_t *cmptparms, OPJ_COLOR_SPACE clrspc) { - int compno; + OPJ_UINT32 compno; opj_image_t *image = NULL; image = (opj_image_t*) opj_calloc(1, sizeof(opj_image_t)); |
