diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 02:40:54 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 02:40:54 +0100 |
commit | d16c6caf825442bf9cc63a2e92903925e6cfabf9 (patch) | |
tree | 7a937ef2dbc8a83695c668a2b78b3e1db8fbff86 /FICS | |
parent | d7ae5bd2126251c9bbeed7f8bf82f8d71177e264 (diff) |
Fixed bogus code block end
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/obsproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 056d412..c696fe7 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -1072,13 +1072,13 @@ stored_mail_moves(int p, int mail, param_list param) garray[g].white_name, garray[g].black_name); } + } if (mail_string_to_user(p, subj, movesToString (g, parray[p].pgn))) pprintf(p, "Moves NOT mailed, perhaps " "your address is incorrect.\n"); else pprintf(p, "Moves mailed.\n"); - } } else { pprintf(p, "%s\n", movesToString(g, 0)); } /* Do smoves */ |