diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-21 17:42:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-21 17:42:59 +0800 |
commit | 77b9f1eac5616fc018b29a2e968c2e6a84b5538d (patch) | |
tree | c45247879c0e238788b94f87abe1986e7a2ea6fc /src/nvim/mapping.c | |
parent | c15e9d3746ee0aa6a9d80596bffc19e9ac9612bc (diff) | |
download | rneovim-77b9f1eac5616fc018b29a2e968c2e6a84b5538d.tar.gz rneovim-77b9f1eac5616fc018b29a2e968c2e6a84b5538d.tar.bz2 rneovim-77b9f1eac5616fc018b29a2e968c2e6a84b5538d.zip |
refactor: fix clang warnings (#19453)
Diffstat (limited to 'src/nvim/mapping.c')
-rw-r--r-- | src/nvim/mapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mapping.c b/src/nvim/mapping.c index 5a11ac686e..9d1a847663 100644 --- a/src/nvim/mapping.c +++ b/src/nvim/mapping.c @@ -2028,7 +2028,7 @@ static void get_maparg(typval_T *argvars, typval_T *rettv, int exact) int mode; bool abbr = false; bool get_dict = false; - mapblock_T *mp; + mapblock_T *mp = NULL; int buffer_local; int flags = REPTERM_FROM_PART | REPTERM_DO_LT; |