aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 15:44:44 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 15:44:44 +0000
commit94f5ddb60cb3aa3b7443b0ab3138f9b4517f2a30 (patch)
treefd067fcab44e69d0e2f6c38b61977afe77489011
parent658659532a23bdaa29c67f7b2cac19c42666cd06 (diff)
downloadrtmux-94f5ddb60cb3aa3b7443b0ab3138f9b4517f2a30.tar.gz
rtmux-94f5ddb60cb3aa3b7443b0ab3138f9b4517f2a30.tar.bz2
rtmux-94f5ddb60cb3aa3b7443b0ab3138f9b4517f2a30.zip
remove unused flag; while here, make usage's output fit on 80-column displays.
-rw-r--r--tmux.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tmux.c b/tmux.c
index 0f0fab0e..428df33d 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.125 2009-06-25 15:44:03 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.4 2009/06/02 16:53:20 sobrado Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -73,8 +73,9 @@ const char *__progname = "tmux";
__dead void
usage(void)
{
- fprintf(stderr, "usage: %s [-28dqUuVv] [-f file] "
- "[-L socket-name] [-S socket-path] [command [flags]]\n",
+ fprintf(stderr,
+ "usage: %s [-28dqUuv] [-f file] [-L socket-name] [-S socket-path]\n"
+ " [command [flags]]\n",
__progname);
exit(1);
}