[trunk] Remove another warning. ftell returns long int

Update issue 256
This commit is contained in:
Mathieu Malaterre 2014-03-04 09:32:19 +00:00
parent 36320b4bf4
commit 872368d25c
1 changed files with 1 additions and 1 deletions

View File

@ -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");