diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-05 19:39:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 19:39:36 +0100 |
commit | d557a4557100e3ab48a504dafcf53f544196595c (patch) | |
tree | 2440337b15c779ef5701d6d0830e24b7ac5cf689 /src/nvim/ex_eval.c | |
parent | 2de4d3c7ac0216b9c2f268116b4dd09a38663b7d (diff) | |
parent | fff527b88de91b88db95143c470c3e9007dd443e (diff) | |
download | rneovim-d557a4557100e3ab48a504dafcf53f544196595c.tar.gz rneovim-d557a4557100e3ab48a504dafcf53f544196595c.tar.bz2 rneovim-d557a4557100e3ab48a504dafcf53f544196595c.zip |
Merge pull request #17538 from dundargoc/refactor/bugprone-signed-char-misuse
refactor: fix clang-tidy bugprone-signed-char-misuse warnings
Diffstat (limited to 'src/nvim/ex_eval.c')
-rw-r--r-- | src/nvim/ex_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_eval.c b/src/nvim/ex_eval.c index 851828afcf..6395bbc70b 100644 --- a/src/nvim/ex_eval.c +++ b/src/nvim/ex_eval.c @@ -1602,7 +1602,7 @@ void ex_endtry(exarg_T *eap) { int idx; bool rethrow = false; - int pending = CSTP_NONE; + char pending = CSTP_NONE; void *rettv = NULL; cstack_T *const cstack = eap->cstack; |