aboutsummaryrefslogtreecommitdiff
path: root/libseat/libseat.c
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2021-03-26 11:32:23 +0100
committerKenny Levinsen <kl@kl.wtf>2021-03-26 11:34:13 +0100
commitf9ba8b57bc6505964d8055c87428234eb20f7992 (patch)
tree3890fa0df8b36517422aa6c4500544bbb6b43ce2 /libseat/libseat.c
parentfa2700126fe355939744a5e77159e7fc4a631575 (diff)
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.
Diffstat (limited to 'libseat/libseat.c')
-rw-r--r--libseat/libseat.c1
1 files changed, 1 insertions, 0 deletions
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},
};