diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-20 14:58:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-20 14:58:13 +0000 |
commit | f2b7b5f2a213854221814c0276708a24c4bbf6d9 (patch) | |
tree | 1536a2306de4213bb44691a4dcd7a707d8c78acd /usr.bin/tmux/window.c | |
parent | 32ba233eaebf817813a3465b47b2223804f40e6c (diff) |
Regularise some fatal messages.
Diffstat (limited to 'usr.bin/tmux/window.c')
-rw-r--r-- | usr.bin/tmux/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/window.c b/usr.bin/tmux/window.c index ecc4646d321..07396c8d7c2 100644 --- a/usr.bin/tmux/window.c +++ b/usr.bin/tmux/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.25 2009/09/16 12:35:04 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.26 2009/09/20 14:58:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -480,7 +480,7 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell, ws.ws_row = screen_size_y(&wp->base); if (gettimeofday(&wp->window->name_timer, NULL) != 0) - fatal("gettimeofday"); + fatal("gettimeofday failed"); tv.tv_sec = 0; tv.tv_usec = NAME_INTERVAL * 1000L; timeradd(&wp->window->name_timer, &tv, &wp->window->name_timer); |