TIFFTranslator.cpp: fix gcc6 build

* Reindent source code, to fix gcc6
  '-Werror=misleading-indentation' warnings.

Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
This commit is contained in:
Murai Takashi 2016-05-05 17:04:05 +09:00 committed by Augustin Cavalier
parent 3ab5be9f77
commit 2df5a0bafe

View File

@ -652,8 +652,8 @@ TIFFTranslator::translate_from_bits(BPositionIO *inSource, uint32 outType,
TIFF* tif = TIFFClientOpen("TIFFTranslator", "w", outDestination,
tiff_read_proc, tiff_write_proc, tiff_seek_proc, tiff_close_proc,
tiff_size_proc, tiff_map_file_proc, tiff_unmap_file_proc);
if (!tif)
return B_NO_TRANSLATOR;
if (!tif)
return B_NO_TRANSLATOR;
// common fields which are independent of the bitmap format
uint32 width = bitsHeader.bounds.IntegerWidth() + 1;