From 5265115b177e5c73ea931c64cff46e7e02ddf83c Mon Sep 17 00:00:00 2001 From: Murai Takashi Date: Thu, 5 May 2016 17:06:04 +0900 Subject: [PATCH] Ports.cpp: fix gcc6 build * Reindent source code, to fix gcc6 '-Werror=misleading-indentation' warnings. --- src/add-ons/accelerants/intel_extreme/Ports.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/accelerants/intel_extreme/Ports.cpp b/src/add-ons/accelerants/intel_extreme/Ports.cpp index f6f865b067..ece8cfd4d9 100644 --- a/src/add-ons/accelerants/intel_extreme/Ports.cpp +++ b/src/add-ons/accelerants/intel_extreme/Ports.cpp @@ -130,10 +130,10 @@ Port::SetPipe(Pipe* pipe) uint32 portState = read32(portRegister); - if (pipe->Index() == INTEL_PIPE_A) - write32(portRegister, portState & ~DISPLAY_MONITOR_PIPE_B); - else - write32(portRegister, portState | DISPLAY_MONITOR_PIPE_B); + if (pipe->Index() == INTEL_PIPE_A) + write32(portRegister, portState & ~DISPLAY_MONITOR_PIPE_B); + else + write32(portRegister, portState | DISPLAY_MONITOR_PIPE_B); fPipe = pipe;