From ae10992d0e6ba489e561e39b374fe3462eff4678 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 23 Nov 2012 11:54:23 -0500 Subject: [PATCH] Fix order. --- .../user_interface/cli/CommandLineUserInterface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp index bbd0f86366..e6d2bb097a 100644 --- a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp +++ b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp @@ -282,12 +282,12 @@ CommandLineUserInterface::_RegisterCommands() _RegisterCommand("continue", new(std::nothrow) CliContinueCommand) && _RegisterCommand("help", new(std::nothrow) HelpCommand(this)) && _RegisterCommand("quit", new(std::nothrow) CliQuitCommand) && + _RegisterCommand("save-report", + new(std::nothrow) CliDebugReportCommand) && _RegisterCommand("sc", stackTraceCommandReference2.Detach()) && _RegisterCommand("stop", new(std::nothrow) CliStopCommand) && _RegisterCommand("thread", new(std::nothrow) CliThreadCommand) && - _RegisterCommand("threads", new(std::nothrow) CliThreadsCommand) && - _RegisterCommand("save-report", - new(std::nothrow) CliDebugReportCommand)) { + _RegisterCommand("threads", new(std::nothrow) CliThreadsCommand)) { return B_OK; }