aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2025-04-01 20:25:21 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2025-04-01 20:25:21 +0200
commit7f899db400de04a8d30093babd6b27ff6f52818b (patch)
treef8e764afd0479635d00c0a27ed43a111483924ab
parent29e7f76bf63dd6478d9422f441b2805481311267 (diff)
journal_get_info: fscanf: added width spec
-rw-r--r--FICS/gamedb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/gamedb.c b/FICS/gamedb.c
index 6d108b0..54e6479 100644
--- a/FICS/gamedb.c
+++ b/FICS/gamedb.c
@@ -1866,7 +1866,7 @@ journal_get_info(struct JGI_context *ctx, const char *fname)
_Static_assert(ARRAY_SIZE(ctx->ending) > 99, "'ending' too small");
_Static_assert(ARRAY_SIZE(ctx->result) > 99, "'result' too small");
- if (fscanf(fp, "%c %s %d %s %d %s %d %d %s %s %s\n",
+ if (fscanf(fp, "%c %20s %d %20s %d %99s %d %d %99s %99s %99s\n",
&count,
ctx->WhiteName, &ctx->WhiteRating,
ctx->BlackName, &ctx->BlackRating,