diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-05-31 16:57:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-31 16:57:42 -0700 |
commit | f9275c68af58e0f65e1557b5109ccbfdbbbc384a (patch) | |
tree | 7479d66d97277f47490de10e204cfcbc0a123885 /builtin-bisect--helper.c | |
parent | Merge branch 'jc/solaris-0811' (diff) | |
parent | parse-opts: add OPT_FILENAME and transition builtins (diff) | |
download | tgif-f9275c68af58e0f65e1557b5109ccbfdbbbc384a.tar.xz |
Merge branch 'sb/opt-filename'
* sb/opt-filename:
parse-opts: add OPT_FILENAME and transition builtins
parse-opts: prepare for OPT_FILENAME
Conflicts:
builtin-log.c
Diffstat (limited to 'builtin-bisect--helper.c')
-rw-r--r-- | builtin-bisect--helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin-bisect--helper.c b/builtin-bisect--helper.c index cb3e155116..5b226399e1 100644 --- a/builtin-bisect--helper.c +++ b/builtin-bisect--helper.c @@ -17,7 +17,8 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix) OPT_END() }; - argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0); + argc = parse_options(argc, argv, prefix, options, + git_bisect_helper_usage, 0); if (!next_all) usage_with_options(git_bisect_helper_usage, options); |