aboutsummaryrefslogtreecommitdiff
path: root/kernel/debug/kdb
diff options
context:
space:
mode:
authorGravatar Thorsten Blum <thorsten.blum@toblux.com> 2024-03-28 15:00:17 +0100
committerGravatar Daniel Thompson <daniel.thompson@linaro.org> 2024-04-22 16:53:19 +0100
commit5b6d8ef6f056d8130168746c5459d7a3fb494859 (patch)
treeef5b99bb1059d86ebf767fcdf0c15aa32d5a949c /kernel/debug/kdb
parentLinux 6.9-rc4 (diff)
downloadlinux-5b6d8ef6f056d8130168746c5459d7a3fb494859.tar.gz
linux-5b6d8ef6f056d8130168746c5459d7a3fb494859.tar.bz2
linux-5b6d8ef6f056d8130168746c5459d7a3fb494859.zip
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@toblux.com> Reviewed-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/20240328140015.388654-3-thorsten.blum@toblux.com Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Diffstat (limited to 'kernel/debug/kdb')
-rw-r--r--kernel/debug/kdb/kdb_main.c2
1 files changed, 1 insertions, 1 deletions
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);