diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-09-06 16:23:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 07:23:00 -0700 |
commit | 12afc344deb2df3973904fe55813d700da985dbf (patch) | |
tree | d60d9da9563eabe9ea30a17e20f9c8dc21e4f495 /src/nvim/memline.c | |
parent | 84d1094958fdbdda67f629197924d4146e2a1887 (diff) | |
download | rneovim-12afc344deb2df3973904fe55813d700da985dbf.tar.gz rneovim-12afc344deb2df3973904fe55813d700da985dbf.tar.bz2 rneovim-12afc344deb2df3973904fe55813d700da985dbf.zip |
refactor: migrate comment style 2 #20080
Diffstat (limited to 'src/nvim/memline.c')
-rw-r--r-- | src/nvim/memline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 35650755b4..c5e8e3da07 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -1161,7 +1161,7 @@ theend: } mf_close(mfp, false); // will also xfree(mfp->mf_fname) } - if (buf != NULL) { //may be NULL if swap file not found. + if (buf != NULL) { // may be NULL if swap file not found. xfree(buf->b_ml.ml_stack); xfree(buf); } |