diff src/misc1.c @ 28497:7c4a9e20c178 v8.2.4773

patch 8.2.4773: build failure without the +eval feature Commit: https://github.com/vim/vim/commit/a9549c9e8f368a7fa1dcbe14ec23e82c6a0b8715 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 17 14:18:11 2022 +0100 patch 8.2.4773: build failure without the +eval feature Problem: Build failure without the +eval feature. Solution: Use other error message. Avoid warnings.
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Apr 2022 15:30:06 +0200
parents f285dd00704e
children 5be5151ad510
line wrap: on
line diff
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -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;