diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-02-27 10:08:57 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-27 10:08:58 -0800 |
commit | 506bd0ec82d0b51d49a8e0c6fbe37b23619b0938 (patch) | |
tree | 7f91de43e81ac7d300821ed1856438b6ad8a87c7 /trace.c | |
parent | 630501ceef6a70203f89ab62c9909c96a2d751ec (diff) | |
parent | 17ab64e1b57b84d551a10e516d2722367e00e76c (diff) |
Merge branch 'if/simplify-trace-setup'
Code clean-up.
* if/simplify-trace-setup:
trace.c, git.c: remove unnecessary parameter to trace_repo_setup()
Diffstat (limited to 'trace.c')
-rw-r--r-- | trace.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -291,10 +291,9 @@ static const char *quote_crnl(const char *path) return new_path.buf; } -/* FIXME: move prefix to startup_info struct and get rid of this arg */ -void trace_repo_setup(const char *prefix) +void trace_repo_setup(void) { - const char *git_work_tree; + const char *git_work_tree, *prefix = startup_info->prefix; char *cwd; if (!trace_want(&trace_setup_key)) @@ -305,7 +304,7 @@ void trace_repo_setup(const char *prefix) if (!(git_work_tree = get_git_work_tree())) git_work_tree = "(null)"; - if (!prefix) + if (!startup_info->prefix) prefix = "(null)"; trace_printf_key(&trace_setup_key, "setup: git_dir: %s\n", quote_crnl(get_git_dir())); |