diff options
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vi.c b/editors/vi.c index 60c73c0eb..cdfb27cc5 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -1038,7 +1038,7 @@ static void colon(char *buf) | |||
1038 | } | 1038 | } |
1039 | if (cnt < 0) { | 1039 | if (cnt < 0) { |
1040 | if (cnt == -1) | 1040 | if (cnt == -1) |
1041 | status_line_bold("Write error: %s", strerror(errno)); | 1041 | status_line_bold("Write error: "STRERROR_FMT STRERROR_ERRNO); |
1042 | } else { | 1042 | } else { |
1043 | modified_count = 0; | 1043 | modified_count = 0; |
1044 | last_modified_count = -1; | 1044 | last_modified_count = -1; |
@@ -3131,7 +3131,7 @@ static void status_line_bold(const char *format, ...) | |||
3131 | 3131 | ||
3132 | static void status_line_bold_errno(const char *fn) | 3132 | static void status_line_bold_errno(const char *fn) |
3133 | { | 3133 | { |
3134 | status_line_bold("'%s' %s", fn, strerror(errno)); | 3134 | status_line_bold("'%s' "STRERROR_FMT, fn STRERROR_ERRNO); |
3135 | } | 3135 | } |
3136 | 3136 | ||
3137 | // format status buffer | 3137 | // format status buffer |
@@ -4066,7 +4066,7 @@ static void do_cmd(int c) | |||
4066 | cnt = file_write(current_filename, text, end - 1); | 4066 | cnt = file_write(current_filename, text, end - 1); |
4067 | if (cnt < 0) { | 4067 | if (cnt < 0) { |
4068 | if (cnt == -1) | 4068 | if (cnt == -1) |
4069 | status_line_bold("Write error: %s", strerror(errno)); | 4069 | status_line_bold("Write error: "STRERROR_FMT STRERROR_ERRNO); |
4070 | } else if (cnt == (end - 1 - text + 1)) { | 4070 | } else if (cnt == (end - 1 - text + 1)) { |
4071 | editing = 0; | 4071 | editing = 0; |
4072 | } | 4072 | } |