[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240421232602.956049-2-thorsten.blum@toblux.com>
Date: Mon, 22 Apr 2024 01:26:03 +0200
From: Thorsten Blum <thorsten.blum@...lux.com>
To: dianders@...omium.org
Cc: christophe.jaillet@...adoo.fr,
daniel.thompson@...aro.org,
jason.wessel@...driver.com,
kgdb-bugreport@...ts.sourceforge.net,
linux-kernel@...r.kernel.org,
thorsten.blum@...lux.com,
yuran.pereira@...mail.com
Subject: [RESEND PATCH] kdb: Use str_plural() to fix Coccinelle warning
Fixes the following Coccinelle/coccicheck warning reported by
string_choices.cocci:
opportunity for str_plural(days)
Signed-off-by: Thorsten Blum <thorsten.blum@...lux.com>
Reviewed-by: Douglas Anderson <dianders@...omium.org>
---
kernel/debug/kdb/kdb_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
index d05066cb40b2..664bae55f2c9 100644
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -2517,7 +2517,7 @@ static int kdb_summary(int argc, const char **argv)
if (val.uptime > (24*60*60)) {
int days = val.uptime / (24*60*60);
val.uptime %= (24*60*60);
- kdb_printf("%d day%s ", days, days == 1 ? "" : "s");
+ kdb_printf("%d day%s ", days, str_plural(days));
}
kdb_printf("%02ld:%02ld\n", val.uptime/(60*60), (val.uptime/60)%60);
--
2.44.0
Powered by blists - more mailing lists