PVS/V618: fix emsgf format specifier #11643

This commit is contained in:
Husain Alshehhi
2020-01-01 07:59:37 -06:00
committed by Justin M. Keyes
parent e922576bdd
commit dec165b268
3 changed files with 6 additions and 5 deletions

View File

@@ -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;
}