From f9ba8b57bc6505964d8055c87428234eb20f7992 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Fri, 26 Mar 2021 11:32:23 +0100 Subject: Avoid a clang-format quirk clang-format wants to put the terminating NULLs on the same line as the noop backend when it doens't have any immediate non-NULL neighbors. Add a newline to stop it. --- libseat/libseat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libseat/libseat.c b/libseat/libseat.c index a7e079c..42449a8 100644 --- a/libseat/libseat.c +++ b/libseat/libseat.c @@ -26,6 +26,7 @@ static const struct named_backend impls[] = { {"builtin", &builtin_impl}, #endif {"noop", &noop_impl}, + {NULL, NULL}, }; -- cgit v1.2.3