From 3266fb5441e99c809ee56806a0eb8d113a4d099f Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 20 Sep 2009 22:11:27 +0000 Subject: Sync OpenBSD patchset 332: Regularise some fatal messages. --- window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 2d86b9f3..e5a902ba 100644 --- a/window.c +++ b/window.c @@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.107 2009-09-16 12:36:28 nicm Exp $ */ +/* $Id: window.c,v 1.108 2009-09-20 22:11:27 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -478,7 +478,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); -- cgit