summaryrefslogtreecommitdiffstats
path: root/src/findfile.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-06-06 14:14:39 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-06 14:14:39 +0200
commit3cfa5b16b06bcc034f6de77070fa779d698ab5e9 (patch)
tree1791529efb117bb1e68814a35dbe9f6d5a8bca0f /src/findfile.c
parent7a2217bedd223df4c8bbebe731bf0b5fe8532533 (diff)
patch 8.2.2949: tests failing because no error for float to string conversionv8.2.2949
Problem: Tests failing because there is no error for float to string conversion. Solution: Change the check for failure to check for correct result. Make some conversions strict in Vim9 script.
Diffstat (limited to 'src/findfile.c')
-rw-r--r--src/findfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/findfile.c b/src/findfile.c
index 4f69c47caa..a72fe45ad9 100644
--- a/src/findfile.c
+++ b/src/findfile.c
@@ -2848,7 +2848,7 @@ f_simplify(typval_T *argvars, typval_T *rettv)
{
char_u *p;
- p = tv_get_string(&argvars[0]);
+ p = tv_get_string_strict(&argvars[0]);
rettv->vval.v_string = vim_strsave(p);
simplify_filename(rettv->vval.v_string); // simplify in place
rettv->v_type = VAR_STRING;