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/names.c | |
parent | 32ba233eaebf817813a3465b47b2223804f40e6c (diff) |
Regularise some fatal messages.
Diffstat (limited to 'usr.bin/tmux/names.c')
-rw-r--r-- | usr.bin/tmux/names.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/names.c b/usr.bin/tmux/names.c index 33892d336ca..1cc4c759cb6 100644 --- a/usr.bin/tmux/names.c +++ b/usr.bin/tmux/names.c @@ -1,4 +1,4 @@ -/* $OpenBSD: names.c,v 1.6 2009/09/01 13:09:49 nicm Exp $ */ +/* $OpenBSD: names.c,v 1.7 2009/09/20 14:58:12 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -36,7 +36,7 @@ set_window_names(void) struct timeval tv, tv2; if (gettimeofday(&tv, NULL) != 0) - fatal("gettimeofday"); + fatal("gettimeofday failed"); for (i = 0; i < ARRAY_LENGTH(&windows); i++) { w = ARRAY_ITEM(&windows, i); |