From 6049dfe52835ce933cee3c59d78a11f41835cb50 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Wed, 15 Nov 2023 19:45:53 +0900 Subject: [PATCH] lslocks: add a missing "break;" in a switch/case statement Signed-off-by: Masatake YAMATO --- misc-utils/lslocks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/misc-utils/lslocks.c b/misc-utils/lslocks.c index 0996454f36..2d4e7c6b85 100644 --- a/misc-utils/lslocks.c +++ b/misc-utils/lslocks.c @@ -657,6 +657,7 @@ static void add_scols_line(struct libscols_table *table, struct lock *l, struct get_blocker(l->id, locks) : 0; if (bl) xasprintf(&str, "%d", (int) bl); + break; } default: break; -- 2.47.3