diff options
author | Husain Alshehhi <husainaloos@users.noreply.github.com> | 2020-01-01 07:59:37 -0600 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2020-01-01 05:59:37 -0800 |
commit | dec165b268803d08425e0f173b2487c76a2c440c (patch) | |
tree | 8a4bbd61c1b283720957693fbab58a9316701934 /src/nvim/eval/typval.h | |
parent | e922576bdd6abd6736417343121120b289079565 (diff) | |
download | rneovim-dec165b268803d08425e0f173b2487c76a2c440c.tar.gz rneovim-dec165b268803d08425e0f173b2487c76a2c440c.tar.bz2 rneovim-dec165b268803d08425e0f173b2487c76a2c440c.zip |
PVS/V618: fix emsgf format specifier #11643
Diffstat (limited to 'src/nvim/eval/typval.h')
-rw-r--r-- | src/nvim/eval/typval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index 02d241f6f5..008453b87f 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -798,7 +798,7 @@ static inline bool tv_get_float_chk(const typval_T *const tv, *ret_f = (float_T)tv->vval.v_number; return true; } - emsgf(_("E808: Number or Float required")); + emsgf("%s", _("E808: Number or Float required")); return false; } |