1
0
forked from aniani/vim

patch 8.2.4773: build failure without the +eval feature

Problem:    Build failure without the +eval feature.
Solution:   Use other error message.  Avoid warnings.
This commit is contained in:
Bram Moolenaar
2022-04-17 14:18:11 +01:00
parent 3df8f6e353
commit a9549c9e8f
4 changed files with 10 additions and 8 deletions

View File

@@ -2343,7 +2343,7 @@ get_cmd_output(
|| (len = ftell(fd)) == -1 // get size of temp file
|| fseek(fd, 0L, SEEK_SET) == -1) // back to the start
{
semsg(_(e_cannot_read_from_str), tempname);
semsg(_(e_cannot_read_from_str_2), tempname);
if (fd != NULL)
fclose(fd);
goto done;