From: Cleber Rosa <crosa@xxxxxxxxxx> The reference given to users when the result of setup_git_directory_gently_1() is unexpected is incorrect. This fixes the name of the function when presenting the BUG message. Signed-off-by: Cleber Rosa <crosa@xxxxxxxxxx> --- setup: fix function name Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1255%2Fclebergnu%2Ffix_function_name-v1 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1255/clebergnu/fix_function_name-v1 Pull-Request: https://github.com/gitgitgadget/git/pull/1255 setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.c b/setup.c index faf5095e44d..b5a537258d2 100644 --- a/setup.c +++ b/setup.c @@ -1402,7 +1402,7 @@ const char *setup_git_directory_gently(int *nongit_ok) * find a repository. */ default: - BUG("unhandled setup_git_directory_1() result"); + BUG("unhandled setup_git_directory_gently_1() result"); } /* base-commit: 9c897eef06347cc5a3eb07c3ae409970ab1052c8 -- gitgitgadget