aboutsummaryrefslogtreecommitdiffstats
path: root/terms.c
diff options
context:
space:
mode:
authorHIGUCHI Daisuke (VDR dai) <dai@debian.org>2017-12-24 02:30:20 +0000
committerTatsuya Kinoshita <tats@debian.org>2017-12-24 22:02:21 +0000
commit57b37c223b7b068a6bdfa8621caa50967cc57336 (patch)
tree0cae47e6c71d064db68950cd908da50982c420b8 /terms.c
parentUpdate ChangeLog (diff)
downloadw3m-57b37c223b7b068a6bdfa8621caa50967cc57336.tar.gz
w3m-57b37c223b7b068a6bdfa8621caa50967cc57336.zip
fix spelling error
Diffstat (limited to '')
-rw-r--r--terms.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/terms.c b/terms.c
index 3d2ffd7..a636ac0 100644
--- a/terms.c
+++ b/terms.c
@@ -823,7 +823,7 @@ ttymode_set(int mode, int imode)
while (TerminalSet(tty, &ioval) == -1) {
if (errno == EINTR || errno == EAGAIN)
continue;
- printf("Error occured while set %x: errno=%d\n", mode, errno);
+ printf("Error occurred while set %x: errno=%d\n", mode, errno);
reset_error_exit(SIGNAL_ARGLIST);
}
#endif
@@ -844,7 +844,7 @@ ttymode_reset(int mode, int imode)
while (TerminalSet(tty, &ioval) == -1) {
if (errno == EINTR || errno == EAGAIN)
continue;
- printf("Error occured while reset %x: errno=%d\n", mode, errno);
+ printf("Error occurred while reset %x: errno=%d\n", mode, errno);
reset_error_exit(SIGNAL_ARGLIST);
}
#endif /* __MINGW32_VERSION */
@@ -861,7 +861,7 @@ set_cc(int spec, int val)
while (TerminalSet(tty, &ioval) == -1) {
if (errno == EINTR || errno == EAGAIN)
continue;
- printf("Error occured: errno=%d\n", errno);
+ printf("Error occurred: errno=%d\n", errno);
reset_error_exit(SIGNAL_ARGLIST);
}
}
@@ -2282,7 +2282,7 @@ sleep_till_anykey(int sec, int purge)
}
er = TerminalSet(tty, &ioval);
if (er == -1) {
- printf("Error occured: errno=%d\n", errno);
+ printf("Error occurred: errno=%d\n", errno);
reset_error_exit(SIGNAL_ARGLIST);
}
return ret;