diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-07-18 08:58:18 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-07-18 08:58:18 +0000 |
| commit | 9cd5752e387b908485cb79dc26c84671cdc42679 (patch) | |
| tree | f17655b959461337f90546546cae3c095bddd8a7 /applications/codec | |
| parent | 65f7f8dc506e3c889e137bef1c730644fc7798eb (diff) | |
correct build error (mislocated declaration) with convert to tiff function when HAVE_LIBTIFF is defined
Diffstat (limited to 'applications/codec')
| -rw-r--r-- | applications/codec/convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/codec/convert.c b/applications/codec/convert.c index 9310938a..f3170a72 100644 --- a/applications/codec/convert.c +++ b/applications/codec/convert.c @@ -1925,9 +1925,9 @@ int imagetotif(opj_image_t * image, const char *outfile) { unsigned char *dat8; tsize_t i, ssize; + int step, restx; ssize = TIFFStripSize(tif); dat8 = (unsigned char*)buf; - int step, restx; if(bps == 8) { |
