From: Masatake YAMATO Date: Wed, 15 Nov 2023 10:45:53 +0000 (+0900) Subject: lslocks: add a missing "break;" in a switch/case statement X-Git-Tag: v2.40-rc1~149^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6049dfe52835ce933cee3c59d78a11f41835cb50;p=thirdparty%2Futil-linux.git lslocks: add a missing "break;" in a switch/case statement Signed-off-by: Masatake YAMATO --- 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;