diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 01:48:15 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-01-04 01:48:15 +0100 |
commit | dc3f9d7b9e0ee8c160d06c8be458403b31ac324a (patch) | |
tree | cddb728b2bce9f0e44de1486c2c62963321409f9 /FICS/matchproc.c | |
parent | 0f83ad1476b377018d5dea876303cbb938c36baf (diff) |
Fixed 'too many arguments for format'
Diffstat (limited to 'FICS/matchproc.c')
-rw-r--r-- | FICS/matchproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/matchproc.c b/FICS/matchproc.c index 1522e3e..7c095c4 100644 --- a/FICS/matchproc.c +++ b/FICS/matchproc.c @@ -777,7 +777,7 @@ PUBLIC int com_match(int p, param_list param) pprintf(p1, "\n%s updates the match request.\n", parray[p].name); } else { pprintf(p, "Issuing: "); - pprintf(p1, "\n", parray[p].name); + pprintf(p1, "\n"); // XXX: 'parray[p].name' } pprintf(p, "%s (%s) %s", parray[p].name, |