diff options
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.60 2008-06-18 20:11:25 nicm Exp $ */ +/* $Id: tmux.c,v 1.61 2008-06-18 22:21:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -58,12 +58,12 @@ __dead void usage(void); #ifdef NO_PROGNAME const char *__progname = "tmux"; -#endif +#endif __dead void usage(void) { - fprintf(stderr, + fprintf(stderr, "usage: %s [-v] [-f file] [-S socket-path] [command [flags]]\n", __progname); exit(1); @@ -240,7 +240,7 @@ main(int argc, char **argv) if (access(cfg_file, R_OK) != 0) { log_warn("%s", cfg_file); exit(1); - } + } } if (path == NULL) { |