From 872368d25c2186e631bc629b2aaf72d21a715c54 Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Tue, 4 Mar 2014 09:32:19 +0000 Subject: [PATCH] [trunk] Remove another warning. ftell returns long int Update issue 256 --- src/bin/jp2/opj_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");