From 62130a8429e26fdc8006e1bcb3a233bc525b1766 Mon Sep 17 00:00:00 2001
From: OTB Bot <otbbot@orfeo-toolbox.org>
Date: Fri, 28 Jan 2011 19:55:05 +0100
Subject: [PATCH] STYLE

---
 Code/IO/otbGDALImageIO.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Code/IO/otbGDALImageIO.cxx b/Code/IO/otbGDALImageIO.cxx
index 5b28202c04..30a9be9953 100644
--- a/Code/IO/otbGDALImageIO.cxx
+++ b/Code/IO/otbGDALImageIO.cxx
@@ -316,13 +316,13 @@ void GDALImageIO::Read(void* buffer)
     // if the file is complex and the reader is based on a vector of scalar
     if(GDALDataTypeIsComplex(m_PxType) && !m_IsComplex && m_IsVectorImage)
     {
-      m_BytePerPixel = m_BytePerPixel * 2 ;
+      m_BytePerPixel = m_BytePerPixel * 2;
       m_NbBands = this->GetNumberOfComponents() / 2;
     }
     // if the file is scalar with only one band and the reader is based on a vector of complex
     if(!GDALDataTypeIsComplex(m_PxType) && (m_NbBands == 1) && m_IsComplex && m_IsVectorImage )
     {
-      m_BytePerPixel = m_BytePerPixel / 2 ;
+      m_BytePerPixel = m_BytePerPixel / 2;
     }
 
     // keep it for the moment
-- 
GitLab