From 4765d8078f1886b15b3dfed858a19585c52564b9 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 29 Mar 2025 21:45:10 +0100 Subject: player_remove_request: reduced levels of indent --- FICS/playerdb.c | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/FICS/playerdb.c b/FICS/playerdb.c index cda4e1a..e142a83 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -1909,26 +1909,21 @@ player_remove_request(int p, int p1, int type) { int to = 0, from = 0; - while (to != -1) { - if ((to = player_find_pendto(p, p1, type)) != -1) { - for (; to < parray[p].num_to - 1; to++) { - parray[p].p_to_list[to] = - parray[p].p_to_list[to + 1]; - } - - parray[p].num_to = (parray[p].num_to - 1); + while ((to = player_find_pendto(p, p1, type)) != -1) { + for (; to < parray[p].num_to - 1; to++) { + parray[p].p_to_list[to] = parray[p].p_to_list[to + 1]; } - } - while (from != -1) { - if ((from = player_find_pendfrom(p1, p, type)) != -1) { - for (; from < parray[p1].num_from - 1; from++) { - parray[p1].p_from_list[from] = - parray[p1].p_from_list[from + 1]; - } + parray[p].num_to = (parray[p].num_to - 1); + } - parray[p1].num_from = (parray[p1].num_from - 1); + while ((from = player_find_pendfrom(p1, p, type)) != -1) { + for (; from < parray[p1].num_from - 1; from++) { + parray[p1].p_from_list[from] = + parray[p1].p_from_list[from + 1]; } + + parray[p1].num_from = (parray[p1].num_from - 1); } if ((type == PEND_ALL || type == PEND_MATCH) && parray[p].partner >= 0) -- cgit v1.2.3