diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-27 11:05:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-27 11:05:21 +0000 |
commit | 635edfa7d586b89255d9d5fc64e85d88b6343f56 (patch) | |
tree | ad7393dba8a1fd28d13f9458bad1cb716d56947c /tmux.h | |
parent | 228ec26d10ddeb2241499b3876886146b22cea27 (diff) | |
download | rtmux-635edfa7d586b89255d9d5fc64e85d88b6343f56.tar.gz rtmux-635edfa7d586b89255d9d5fc64e85d88b6343f56.tar.bz2 rtmux-635edfa7d586b89255d9d5fc64e85d88b6343f56.zip |
Don't accept zero titles.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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)) |