diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-12-03 05:51:50 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-03 22:11:53 -0800 |
commit | b319ce4c14f7fe0ee469a3f9def1098d84177849 (patch) | |
tree | 39a7a42798f8512ea00b49b0a4898bf898ae9cf6 /builtin-rev-parse.c | |
parent | 41650765dea25b7804a9fdf41ce0b7db59816734 (diff) | |
download | git-b319ce4c14f7fe0ee469a3f9def1098d84177849.tar.gz git-b319ce4c14f7fe0ee469a3f9def1098d84177849.tar.xz |
Trace and quote with argv: get rid of unneeded count argument.
Now that str_buf takes care of all the allocations, there is
no more gain to pass an argument count.
So this patch removes the "count" argument from:
- "sq_quote_argv"
- "trace_argv_printf"
and all the callers.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-rev-parse.c')
-rw-r--r-- | builtin-rev-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-rev-parse.c b/builtin-rev-parse.c index d1038a0e6..20d1789e0 100644 --- a/builtin-rev-parse.c +++ b/builtin-rev-parse.c @@ -327,7 +327,7 @@ static int cmd_parseopt(int argc, const char **argv, const char *prefix) keep_dashdash ? PARSE_OPT_KEEP_DASHDASH : 0); strbuf_addf(&parsed, " --"); - sq_quote_argv(&parsed, argv, argc, 0); + sq_quote_argv(&parsed, argv, 0); puts(parsed.buf); return 0; } |