[haiku-commits] haiku: hrev44362 - src/apps/debugger

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 20 Jul 2012 13:34:33 +0200 (CEST)

hrev44362 adds 1 changeset to branch 'master'
old head: 0b4ae860860072dfbca7f50bdad5ab5e232bab72
new head: fe0407cd4604f8c1fe33d3ca436daeae112173b7

----------------------------------------------------------------------------

fe0407c: Fix indentation.

                                      [ Rene Gollent <anevilyak@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev44362
Commit:      fe0407cd4604f8c1fe33d3ca436daeae112173b7
URL:         http://cgit.haiku-os.org/haiku/commit/?id=fe0407c
Author:      Rene Gollent <anevilyak@xxxxxxxxx>
Date:        Fri Jul 20 11:34:11 2012 UTC

----------------------------------------------------------------------------

1 file changed, 6 insertions(+), 7 deletions(-)
src/apps/debugger/Worker.cpp |   13 ++++++-------

----------------------------------------------------------------------------

diff --git a/src/apps/debugger/Worker.cpp b/src/apps/debugger/Worker.cpp
index 409ff2b..304c3bd 100644
--- a/src/apps/debugger/Worker.cpp
+++ b/src/apps/debugger/Worker.cpp
@@ -140,13 +140,12 @@ Job::SetWaitStatus(job_wait_status status)
 {
        fWaitStatus = status;
        switch (fWaitStatus) {
-       case JOB_DEPENDENCY_ACTIVE:
-               fState = JOB_STATE_WAITING;
-               break;
-       default:
-               fState = JOB_STATE_ACTIVE;
-               break;
-
+               case JOB_DEPENDENCY_ACTIVE:
+                       fState = JOB_STATE_WAITING;
+                       break;
+               default:
+                       fState = JOB_STATE_ACTIVE;
+                       break;
        }
 }
 


Other related posts:

  • » [haiku-commits] haiku: hrev44362 - src/apps/debugger - anevilyak