Endstops: Fix whitespace
authorBen Gamari <bgamari.foss@gmail.com>
Tue, 8 Jan 2013 23:32:54 +0000 (18:32 -0500)
committerBen Gamari <bgamari.foss@gmail.com>
Tue, 15 Jan 2013 16:00:55 +0000 (11:00 -0500)
src/modules/tools/endstops/Endstops.cpp

index 4cd7db7..3b2cf55 100644 (file)
@@ -60,7 +60,7 @@ void Endstops::wait_for_homed(char axes_to_move)
         running = false;
         for( char c = 'X'; c <= 'Z'; c++ ){
             if( ( axes_to_move >> ( c - 'X' ) ) & 1 ){
-                 if( this->pins[c - 'X']->get() ){
+                if( this->pins[c - 'X']->get() ){
                     if( debounce[c - 'X'] < debounce_count ) {
                         debounce[c - 'X'] ++;
                         running = true;
@@ -72,7 +72,7 @@ void Endstops::wait_for_homed(char axes_to_move)
                     // The endstop was not hit yet
                     running = true;
                     debounce[c - 'X'] = 0;
-                 }
+                }
             }
         }
     }