diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2019-05-07 16:50:37 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-08 19:36:19 +0900 |
commit | 1a8787144ddec30f29e177cdae6bd7cea3ba88fe (patch) | |
tree | 135956a6581418038894fdc9665edfcc6a848cac | |
parent | mingw: allow building with an MSYS2 runtime v3.x (diff) | |
download | tgif-1a8787144ddec30f29e177cdae6bd7cea3ba88fe.tar.xz |
submodule--helper: add a missing \n
This is a complete line. We're not expecting the next function to add
anything to the same line.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/submodule--helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index b80fc4ba3d..163a6b8b99 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -1301,7 +1301,7 @@ static int add_possible_reference_from_superproject( die(_("submodule '%s' cannot add alternate: %s"), sas->submodule_name, err.buf); case SUBMODULE_ALTERNATE_ERROR_INFO: - fprintf(stderr, _("submodule '%s' cannot add alternate: %s"), + fprintf_ln(stderr, _("submodule '%s' cannot add alternate: %s"), sas->submodule_name, err.buf); case SUBMODULE_ALTERNATE_ERROR_IGNORE: ; /* nothing */ |