diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-19 11:00:34 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-19 11:00:34 +0200 |
commit | 21100958a180d20ea1a6746d22bf5b44875cb33d (patch) | |
tree | 048f6f0a1b55c097f5942722fdc0add127d40d2a /FICS/formula.c | |
parent | 8702d77040f3bf0ea355504155bea74bad790754 (diff) |
Deleted whitespaces
Diffstat (limited to 'FICS/formula.c')
-rw-r--r-- | FICS/formula.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FICS/formula.c b/FICS/formula.c index 9c6171d..399fce6 100644 --- a/FICS/formula.c +++ b/FICS/formula.c @@ -201,7 +201,7 @@ VarToToken(game *g, int clause, char *string, int *i, int *tok, int eval) } else if (MoveIndexPastString(string, i, "mymaxtime")) { if (GetNumberInsideParens(g, clause, i, tok, eval) != ERR_NONE) return 0; - *tok = Maxtime (g, *tok, 1); + *tok = Maxtime(g, *tok, 1); } #ifdef TIMESEAL else if (MoveIndexPastString(string, i, "timeseal")) @@ -218,7 +218,7 @@ VarToToken(game *g, int clause, char *string, int *i, int *tok, int eval) else if (MoveIndexPastString(string, i, "maxtime")) { if (GetNumberInsideParens(g, clause, i, tok, eval) != ERR_NONE) return 0; - *tok = Maxtime (g, *tok, 2); + *tok = Maxtime(g, *tok, 2); } else if (MoveIndexPastString(string, i, "abuser")) *tok = in_list(-1, L_ABUSER, you->name); else if (MoveIndexPastString(string, i, "rating")) @@ -636,7 +636,7 @@ GameMatchesFormula(int w, int b, int wTime, int wInc, int bTime, int bInc, ERR_NONE) return 0; if (ret == 0) - ExplainFormula (&g, clauseList); + ExplainFormula(&g, clauseList); return ret; } |