From 8a6d6d88a3c39cc15ac7609d57b36231cb418f57 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Thu, 18 Sep 2008 03:10:41 +0200 Subject: [PATCH] board_play_in_eye(): Normalize return value --- board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board.c b/board.c index 2561a5e..bda88f5 100644 --- a/board.c +++ b/board.c @@ -698,7 +698,7 @@ board_play_in_eye(struct board *board, struct move *m, int f) board_hash_commit(board); board->ko = ko; - return new_group(board, coord); + return !!new_group(board, coord); } static int __attribute__((flatten)) -- 2.11.4.GIT