From 4472c56d54f447040f6e8610b261b7efa0d04eb6 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 30 Oct 2021 02:23:20 +0200 Subject: refactor: uncrustify #16090 --- src/nvim/eval/encode.c | 2 +- src/nvim/eval/typval.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/eval') diff --git a/src/nvim/eval/encode.c b/src/nvim/eval/encode.c index 2d4d9fdea9..627b4465db 100644 --- a/src/nvim/eval/encode.c +++ b/src/nvim/eval/encode.c @@ -381,7 +381,7 @@ int encode_read_from_list(ListReaderState *const state, char *const buf, const s } else { \ ga_concat(gap, "function("); \ TYPVAL_ENCODE_CONV_STRING(tv, fun_, strlen(fun_)); \ - }\ + } \ } while (0) #define TYPVAL_ENCODE_CONV_FUNC_BEFORE_ARGS(tv, len) \ diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index a28feffd0b..994bce899d 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -30,7 +30,7 @@ typedef uint64_t uvarnumber_T; typedef double float_T; /// Refcount for dict or list that should not be freed -enum { DO_NOT_FREE_CNT = (INT_MAX / 2) }; +enum { DO_NOT_FREE_CNT = (INT_MAX / 2), }; /// Additional values for tv_list_alloc() len argument enum ListLenSpecials { -- cgit