delta.c: fix option '-t'

Both the help and man page claims that it accepts -t with an argument
so let's do that.
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2012-11-14 00:18:02 +01:00
parent e26970a82c
commit 377ec8bf19
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 1);
assert(argv);
while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
while ((c = getopt_long(argc, argv, "ht:", options, NULL)) >= 0) {
switch (c) {