diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-04 09:32:19 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-04 09:32:19 +0000 |
| commit | 872368d25c2186e631bc629b2aaf72d21a715c54 (patch) | |
| tree | 9e7dc766da9ac2d2268f642b629fd58b1f15a393 /src/bin | |
| parent | 36320b4bf45359dd649ab682a58d07383bc2703e (diff) | |
[trunk] Remove another warning. ftell returns long int
Update issue 256
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/jp2/opj_compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |
