From b5cb4c1247e32f76b64166ac0b776de776374631 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 5 May 2017 20:18:38 +0200 Subject: [PATCH] One more indentation fixlet MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- lib/othello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1