From ff56ed7bd66f9be56f525838c21695a8574c1a09 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 4 Oct 2007 11:23:17 +0000 Subject: Nuke ?. --- tmux.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 7a0124d0..e4d3f57a 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.27 2007-10-03 22:32:24 nicm Exp $ */ +/* $Id: tmux.c,v 1.28 2007-10-04 11:23:17 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -171,7 +171,7 @@ main(int argc, char **argv) *name = '\0'; path = NULL; - while ((opt = getopt(argc, argv, "S:s:v?")) != EOF) { + while ((opt = getopt(argc, argv, "S:s:v")) != EOF) { switch (opt) { case 'S': path = xstrdup(optarg); @@ -183,7 +183,6 @@ main(int argc, char **argv) case 'v': debug_level++; break; - case '?': default: goto usage; } -- cgit