diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-19 10:01:46 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-19 10:01:46 +0200 |
commit | 8413fdce506e7763c34f645e77fa87cd00f2c39e (patch) | |
tree | 2a848bf0a058865ca8ff523facbcc9c6fb6dc404 /FICS | |
parent | 6eea8c03a7f2da20dc23172a4891103e36e18916 (diff) |
Added spaces
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/playerdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index e485362..2766a8a 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -716,7 +716,7 @@ got_attr_value_player(int p, char *attr, char *value, FILE *fp, char *file) } else if (!strcmp(attr, "lasthost:")) { parray[p].lastHost = atoi(value); } else if (!strcmp(attr, "channel:")) { - list_addsub(p,"channel",value, 1); + list_addsub(p, "channel", value, 1); } else if (!strcmp(attr, "num_comments:")) { parray[p].num_comments = atoi(value); } else if (!strcmp(attr, "num_plan:")) { @@ -902,7 +902,7 @@ player_read(int p, char *name) if (line[0] == 'v') sscanf(line, "%*c %d", &version); if (version > 0) // Quick method: - ReadV1PlayerFmt(p,&parray[p], fp, fname, version); + ReadV1PlayerFmt(p, &parray[p], fp, fname, version); else { // Do it the old SLOW way do { if (feof(fp)) |