remove unused flag; while here, make usage's output fit on 80-column displays.

This commit is contained in:
Igor Sobrado 2009-06-02 16:53:20 +00:00
parent a35630838f
commit 4215d009a5

5
tmux.c
View File

@ -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);
}