From 7f899db400de04a8d30093babd6b27ff6f52818b Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Tue, 1 Apr 2025 20:25:21 +0200 Subject: journal_get_info: fscanf: added width spec --- FICS/gamedb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS') 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, -- cgit v1.2.3