From b1c3d6f09c415e6fc66d6c4b0eac0a945ef0782b Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Wed, 3 Jan 2024 00:15:23 +0100 Subject: Deleted unnecessary parentheses --- FICS/comproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FICS/comproc.c b/FICS/comproc.c index 5725ef9..9b94f9f 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -1477,7 +1477,7 @@ com_index(int p, param_list param) if (i == 0) { pprintf(p, "No index entry for \"%s\".\n", iwant); - } else if ((i == 1) || !strcmp(*filenames, iwant)) { + } else if (i == 1 || !strcmp(*filenames, iwant)) { if (psend_file(p, index_dir, *filenames)) { /* * We should never reach this unless the file -- cgit v1.2.3