mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 10:25:37 +00:00
Error messages should not have a trailing period.
This commit is contained in:
parent
fc58e44f89
commit
25faca41eb
2 changed files with 2 additions and 2 deletions
|
|
@ -147,7 +147,7 @@ server_window_check_silence(struct session *s, struct winlink *wl)
|
|||
* from this window.
|
||||
*/
|
||||
if (gettimeofday(&w->silence_timer, NULL) != 0)
|
||||
fatal("gettimeofday failed.");
|
||||
fatal("gettimeofday failed");
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
2
window.c
2
window.c
|
|
@ -934,7 +934,7 @@ window_pane_read_callback(unused struct bufferevent *bufev, void *data)
|
|||
*/
|
||||
wp->window->flags |= WINDOW_SILENCE;
|
||||
if (gettimeofday(&wp->window->silence_timer, NULL) != 0)
|
||||
fatal("gettimeofday failed.");
|
||||
fatal("gettimeofday failed");
|
||||
return;
|
||||
|
||||
start_timer:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue