diff options
author | 2009-06-02 16:53:20 +0000 | |
---|---|---|
committer | 2009-06-02 16:53:20 +0000 | |
commit | 6ca2ce32ade45f8817acd7c5284339a4f3a5440c (patch) | |
tree | ff57049e13382b9992d1eb9e45b0eef45f01eb6b | |
parent | Make fxp at pci detachable; untested. (diff) | |
download | wireguard-openbsd-6ca2ce32ade45f8817acd7c5284339a4f3a5440c.tar.xz wireguard-openbsd-6ca2ce32ade45f8817acd7c5284339a4f3a5440c.zip |
remove unused flag; while here, make usage's output fit on 80-column displays.
-rw-r--r-- | usr.bin/tmux/tmux.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index be1292fba0a..06b8085f656 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.3 2009/06/02 15:55:32 pyr Exp $ */ +/* $OpenBSD: tmux.c,v 1.4 2009/06/02 16:53:20 sobrado Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -60,8 +60,9 @@ char *makesockpath(const char *); __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); } |