From 0fc8597f011e0927e529abd11bf0ddd8d0d1eaab Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 9 Oct 2021 14:20:16 +0200 Subject: refactor: format header files with uncrustify #15877 * refactor: format header files with uncrustify * fixup(justin): skip formatting of terminfo_defs.h * fixup: force winsock2 to be included first * fixup: simplify disable/enable directive to "uncrustify:off/on" --- src/nvim/runtime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/runtime.c') diff --git a/src/nvim/runtime.c b/src/nvim/runtime.c index 0e2d23e69b..c47bffd426 100644 --- a/src/nvim/runtime.c +++ b/src/nvim/runtime.c @@ -332,8 +332,8 @@ int do_in_path_and_pp(char_u *path, char_u *name, int flags, DoInRuntimepathCB c return done; } -static void push_path(RuntimeSearchPath *search_path, Map(String, handle_T) *rtp_used, - char *entry, bool after) +static void push_path(RuntimeSearchPath *search_path, Map(String, handle_T) *rtp_used, char *entry, + bool after) { handle_T h = map_get(String, handle_T)(rtp_used, cstr_as_string(entry)); if (h == 0) { -- cgit