One more indentation fixlet
[Project_algorithmic_C.git] / lib / othello.c
index 12470ee23594486a59a00e6195fa93be463371ac..dd92cfb0cbf51900afcff9bebc9bef7c254ba56a 100644 (file)
@@ -188,7 +188,7 @@ static unsigned int reverse_one_direction(int y, int x, int direction, unsigned
     direction_to_coordinates(direction, &moving_y, &moving_x);
     while (true) {
         if (!is_valid_coordinates(moving_y, moving_x) || is_box_type(moving_y, moving_x, pawn_array, empty)) {
-                return 0;
+            return 0;
         }
         if (is_box_type(moving_y, moving_x, pawn_array, current_player)) {
             break;