From 2df5a0bafe7b1323d9f668023cb7ebc9c3676c44 Mon Sep 17 00:00:00 2001 From: Murai Takashi Date: Thu, 5 May 2016 17:04:05 +0900 Subject: [PATCH] TIFFTranslator.cpp: fix gcc6 build * Reindent source code, to fix gcc6 '-Werror=misleading-indentation' warnings. Signed-off-by: Augustin Cavalier --- src/add-ons/translators/tiff/TIFFTranslator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/translators/tiff/TIFFTranslator.cpp b/src/add-ons/translators/tiff/TIFFTranslator.cpp index 1b836f63d1..385fc631cf 100644 --- a/src/add-ons/translators/tiff/TIFFTranslator.cpp +++ b/src/add-ons/translators/tiff/TIFFTranslator.cpp @@ -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;