From f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Mon, 20 Sep 2021 18:35:41 +0200 Subject: refactor: reformat with uncrustify #15736 * fix function parameter comments * remove space after star in function names --- src/nvim/diff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/diff.c') diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 62af6a6393..1d70145209 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -507,7 +507,7 @@ static void diff_mark_adjust_tp(tabpage_T *tp, int idx, linenr_T line1, linenr_T /// @param dp /// /// @return The new diff block. -static diff_T * diff_alloc_new(tabpage_T *tp, diff_T *dprev, diff_T *dp) +static diff_T *diff_alloc_new(tabpage_T *tp, diff_T *dprev, diff_T *dp) { diff_T *dnew = xmalloc(sizeof(*dnew)); -- cgit