From 35f5a02ceef019d4e05862dca1b159e4263eeb21 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sat, 7 Sep 2024 01:15:04 +0100 Subject: [PATCH] tools: add trailing comma for multi-line enums ... otherwise the upcoming clang-format will try to fold them on single line, making the end result far from ideal. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/114 Signed-off-by: Lucas De Marchi --- tools/depmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/depmod.c b/tools/depmod.c index 06e72eea..d177646b 100644 --- a/tools/depmod.c +++ b/tools/depmod.c @@ -407,7 +407,7 @@ struct cfg_override { enum search_type { SEARCH_PATH, SEARCH_BUILTIN, - SEARCH_EXTERNAL + SEARCH_EXTERNAL, }; struct cfg_search { -- 2.47.3