From: Jérôme Benoit Date: Fri, 5 May 2017 18:18:38 +0000 (+0200) Subject: One more indentation fixlet X-Git-Url: https://git.piment-noir.org/?p=Project_algorithmic_C.git;a=commitdiff_plain;h=b5cb4c1247e32f76b64166ac0b776de776374631 One more indentation fixlet Signed-off-by: Jérôme Benoit --- diff --git a/lib/othello.c b/lib/othello.c index 12470ee..dd92cfb 100644 --- a/lib/othello.c +++ b/lib/othello.c @@ -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;