diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-03-29 21:45:10 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-03-29 21:45:10 +0100 |
commit | 4765d8078f1886b15b3dfed858a19585c52564b9 (patch) | |
tree | 9c8ce7e807d79213175dc4d2d5448bc015d49d01 /FICS | |
parent | 7643dcc2c353aee011193c27712885569251623f (diff) |
player_remove_request: reduced levels of indent
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/playerdb.c | 27 |
1 files 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) |