aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/matchproc.c4
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;