From 834de916a71082e4f0951eb10e86ea0030528ade Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Fri, 16 Aug 2024 04:03:36 +0200 Subject: Changed messages --- FICS/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FICS/utils.c b/FICS/utils.c index 0784711..b7072c6 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -707,9 +707,9 @@ fix_time(char *old_time) char month[5] = { '\0' }; static char new_time[20]; - _Static_assert(4 < ARRAY_SIZE(day), "Array too small"); - _Static_assert(4 < ARRAY_SIZE(month), "Array too small"); - _Static_assert(4 < ARRAY_SIZE(date), "Array too small"); + _Static_assert(4 < ARRAY_SIZE(day), "'day' too small"); + _Static_assert(4 < ARRAY_SIZE(month), "'month' too small"); + _Static_assert(4 < ARRAY_SIZE(date), "'date' too small"); if (sscanf(old_time, "%4s %4s %4s", day, month, date) != 3) warnx("%s: sscanf: too few items (%s)", __func__, old_time); -- cgit v1.2.3