Fix order.

This commit is contained in:
Rene Gollent
2012-11-23 11:57:23 -05:00
parent 0bbe873d9e
commit ae10992d0e
@@ -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;
}