diff options
author | HIGUCHI Daisuke (VDR dai) <dai@debian.org> | 2017-12-24 02:30:20 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2017-12-24 22:02:21 +0000 |
commit | 57b37c223b7b068a6bdfa8621caa50967cc57336 (patch) | |
tree | 0cae47e6c71d064db68950cd908da50982c420b8 /terms.c | |
parent | Update ChangeLog (diff) | |
download | w3m-57b37c223b7b068a6bdfa8621caa50967cc57336.tar.gz w3m-57b37c223b7b068a6bdfa8621caa50967cc57336.zip |
fix spelling error
Diffstat (limited to '')
-rw-r--r-- | terms.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |