debugger: fix gcc6 build

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

Signed-off-by: Rene Gollent <[email protected]>
This commit is contained in:
Murai Takashi
2016-05-08 17:21:39 -04:00
committed by Rene Gollent
parent 8fe5054828
commit 50b0cba0c4
2 changed files with 3 additions and 3 deletions
@@ -378,8 +378,8 @@ LocalDebuggerInterface::GetNextDebugEvent(DebugEvent*& _event)
if (message.origin.thread >= 0 && message.origin.nub_port >= 0) if (message.origin.thread >= 0 && message.origin.nub_port >= 0)
error = continue_thread(message.origin.nub_port, error = continue_thread(message.origin.nub_port,
message.origin.thread); message.origin.thread);
if (error != B_OK) if (error != B_OK)
return error; return error;
continue; continue;
} }
@@ -183,7 +183,7 @@ public:
optionItem->PrepareToShow(parentLooper, targetHandler, optionItem->PrepareToShow(parentLooper, targetHandler,
settings, dynamic_cast<OptionsSetting*>(GetSetting())); settings, dynamic_cast<OptionsSetting*>(GetSetting()));
optionItem->SetMarked(optionItem->Option() == selectedOption); optionItem->SetMarked(optionItem->Option() == selectedOption);
} }
} }