diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-03-24 15:43:09 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-03-24 15:43:09 +0100 |
commit | 56a3cf76bc6b39910fa2d60ed237fb10f4f1a710 (patch) | |
tree | 46a418e2fa5029bbe17b6b3b6c219453450dc86b /FICS/matchproc.c | |
parent | 1a1fe94a02107ec1e7b70cd4803552010307d8bf (diff) |
Deleted gap
Diffstat (limited to 'FICS/matchproc.c')
-rw-r--r-- | FICS/matchproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/matchproc.c b/FICS/matchproc.c index 6711c54..8523df9 100644 --- a/FICS/matchproc.c +++ b/FICS/matchproc.c @@ -1042,7 +1042,7 @@ com_decline(int p, param_list param) } } else { if (param[0].type == TYPE_WORD) { - if (!WordToOffer (p, param[0].val.word, &type, &p1)) + if (!WordToOffer(p, param[0].val.word, &type, &p1)) return COM_OK; } else { // Must be an integer declineNum = param[0].val.integer - 1; @@ -1088,7 +1088,7 @@ com_withdraw(int p, param_list param) } } else { if (param[0].type == TYPE_WORD) { - if (!WordToOffer (p, param[0].val.word, &type, &p1)) + if (!WordToOffer(p, param[0].val.word, &type, &p1)) return COM_OK; } else { // Must be an integer withdrawNum = param[0].val.integer - 1; |