From: Mathieu Malaterre Date: Tue, 4 Mar 2014 09:32:19 +0000 (+0000) Subject: [trunk] Remove another warning. ftell returns long int X-Git-Tag: version.2.0.1~4^2~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=872368d25c2186e631bc629b2aaf72d21a715c54;p=openjpeg [trunk] Remove another warning. ftell returns long int Update issue 256 --- diff --git a/src/bin/jp2/opj_compress.c b/src/bin/jp2/opj_compress.c index 5ed5228f..ea941510 100644 --- a/src/bin/jp2/opj_compress.c +++ b/src/bin/jp2/opj_compress.c @@ -937,7 +937,7 @@ static int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *param float *lCurrentDoublePtr; float *lSpace; int *l_int_ptr; - int lNbComp = 0, lTotalComp, lMctComp, i, lStrLen, lStrFread; + int lNbComp = 0, lTotalComp, lMctComp, i; long int lStrLen, lStrFread; /* Open file */ FILE * lFile = fopen(lFilename,"r");