refactor: fix uncrustify lint errors

This commit is contained in:
dundargoc
2022-10-21 16:43:03 +02:00
parent 8371907203
commit abf758a297
3 changed files with 7 additions and 17 deletions

View File

@@ -15,9 +15,7 @@
/// @param[in] objname Object name, used for error message.
///
/// @return OK in case of success, FAIL otherwise.
int encode_vim_to_msgpack(msgpack_packer *packer,
typval_T *tv,
const char *objname);
int encode_vim_to_msgpack(msgpack_packer *packer, typval_T *tv, const char *objname);
/// Convert VimL value to :echo output
///
@@ -26,9 +24,7 @@ int encode_vim_to_msgpack(msgpack_packer *packer,
/// @param[in] objname Object name, used for error message.
///
/// @return OK in case of success, FAIL otherwise.
int encode_vim_to_echo(garray_T *packer,
typval_T *tv,
const char *objname);
int encode_vim_to_echo(garray_T *packer, typval_T *tv, const char *objname);
/// Structure defining state for read_from_list()
typedef struct {