From 635edfa7d586b89255d9d5fc64e85d88b6343f56 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 27 Aug 2007 11:05:21 +0000 Subject: Don't accept zero titles. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 7a80956c..aae8afd8 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.2 2007-07-25 23:13:18 nicm Exp $ */ +/* $Id: tmux.h,v 1.3 2007-08-27 11:05:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -36,7 +36,7 @@ extern char *__progname; /* Fatal errors. */ #define fatal(msg) log_fatal("%s: %s", __func__, msg); -#define fatalx(msg) log_fatal("%s: %s", __func__, msg); +#define fatalx(msg) log_fatalx("%s: %s", __func__, msg); /* Definition to shut gcc up about unused arguments. */ #define unused __attribute__ ((unused)) -- cgit