diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 21:19:37 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-10 09:14:12 +0100 |
commit | 7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch) | |
tree | 47547273268e887fa59b5529d6afde46772a7254 /src/nvim/buffer.c | |
parent | d0cb8744d84822209edd0ac242f2400c784e6dc5 (diff) | |
download | rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2 rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip |
refactor(uncrustify): format all c files
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 2bd14e2103..ecb334c895 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -34,9 +34,9 @@ #include "nvim/channel.h" #include "nvim/charset.h" #include "nvim/cursor.h" +#include "nvim/decoration.h" #include "nvim/diff.h" #include "nvim/digraph.h" -#include "nvim/decoration.h" #include "nvim/eval.h" #include "nvim/ex_cmds.h" #include "nvim/ex_cmds2.h" @@ -4508,7 +4508,7 @@ int build_stl_str_hl(win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use char_u *start = stl_items[stl_separator_locations[i]].start; char_u *seploc = start + dislocation; STRMOVE(seploc, start); - for (char_u *s = start; s < seploc; ) { + for (char_u *s = start; s < seploc;) { MB_CHAR2BYTES(fillchar, s); } |