]> git.ipfire.org Git - thirdparty/git.git/commit - git.c
trace.c, git.c: remove unnecessary parameter to trace_repo_setup()
authoridriss fekir <mcsm224@gmail.com>
Sun, 19 Feb 2023 00:25:27 +0000 (01:25 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 21 Feb 2023 20:06:32 +0000 (12:06 -0800)
commit17ab64e1b57b84d551a10e516d2722367e00e76c
tree5bf2e4b450306be5712d9f07fcf39fc24f7fcadf
parentd9d677b2d8cc5f70499db04e633ba7a400f64cbf
trace.c, git.c: remove unnecessary parameter to trace_repo_setup()

trace_repo_setup() of trace.c is called with the argument 'prefix' from
only one location, run_builtin of git.c, which sets 'prefix' to the return
value of setup_git_directory() or setup_git_directory_gently() (a wrapper
of the former).

Now that "prefix" is in startup_info there is no need for the parameter
of trace_repo_setup() because setup_git_directory() sets "startup_info->prefix"
to the same value it returns. It would be less confusing to use "prefix"
from startup_info instead of passing it as an argument.

Signed-off-by: Idriss Fekir <mcsm224@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git.c
trace.c
trace.h