summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-06-04 21:55:20 +0000
committerBram Moolenaar <Bram@vim.org>2005-06-04 21:55:20 +0000
commit51485f06246966898f7c00e2e53b1ba4c6855cf7 (patch)
treec1cfe02ab088ea7a4423f15829e4083303d62a89 /src/getchar.c
parent4debb442bd885d182d7f77d1dfcdf143fd7cbf88 (diff)
updated for version 7.0079
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 2ece91aa2e..6d26d6d557 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -4342,7 +4342,7 @@ put_escstr(fd, strstart, what)
if (p != NULL)
{
while (*p != NUL)
- if (putc(*p++, fd) < 0)
+ if (fputc(*p++, fd) < 0)
return FAIL;
--str;
continue;