diff options
author | 2009-09-20 14:58:12 +0000 | |
---|---|---|
committer | 2009-09-20 14:58:12 +0000 | |
commit | 85d997dce70e26fe1f89d6c92f6b3e34ad197a1c (patch) | |
tree | e0948db89f23cef27d9437ebc3011ccff2d637d7 /usr.bin/tmux/names.c | |
parent | sync (diff) | |
download | wireguard-openbsd-85d997dce70e26fe1f89d6c92f6b3e34ad197a1c.tar.xz wireguard-openbsd-85d997dce70e26fe1f89d6c92f6b3e34ad197a1c.zip |
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); |