diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-01-03 00:15:23 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-01-03 00:15:26 +0100 |
commit | b1c3d6f09c415e6fc66d6c4b0eac0a945ef0782b (patch) | |
tree | 320605fe28f8520d7c58970c2db85feaaffa5363 /FICS | |
parent | 9318622d5597c768b89a89fcbfa1015af859783f (diff) |
Deleted unnecessary parentheses
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/comproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |