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.
This commit is contained in:
Kenny Levinsen 2021-03-26 11:32:23 +01:00
parent fa2700126f
commit f9ba8b57bc

View file

@ -26,6 +26,7 @@ static const struct named_backend impls[] = {
{"builtin", &builtin_impl}, {"builtin", &builtin_impl},
#endif #endif
{"noop", &noop_impl}, {"noop", &noop_impl},
{NULL, NULL}, {NULL, NULL},
}; };