From d93c52b32b48722b217a323194347e9667e4796b Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Fri, 4 Apr 2025 00:54:56 +0200 Subject: com_allobservers: simplified check (found by PVS-Studio) --- FICS/obsproc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 966e30e..56de00e 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -380,9 +380,8 @@ com_allobservers(int p, param_list param) start = 0; end = g_num; } else if ((obgame >= g_num) || - ((obgame < g_num) && - ((garray[obgame].status != GAME_ACTIVE) && - (garray[obgame].status != GAME_EXAMINE)))) { + (garray[obgame].status != GAME_ACTIVE && + garray[obgame].status != GAME_EXAMINE)) { pprintf(p, "There is no such game.\n"); return COM_OK; } else { -- cgit v1.2.3