diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-05-19 16:45:27 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-19 16:45:27 +0900 |
commit | 195d7999554b3f03c5e5ebebdac60059c1d40288 (patch) | |
tree | 336c43cf5613e8f079909e955e2572fec4f378df /builtin/submodule--helper.c | |
parent | 18cfb74f31209007e3a960efa594c25abd8a4cac (diff) | |
parent | 1a8787144ddec30f29e177cdae6bd7cea3ba88fe (diff) | |
download | git-195d7999554b3f03c5e5ebebdac60059c1d40288.tar.gz |
Merge branch 'nd/submodule-helper-incomplete-line-fix'
Typofix.
* nd/submodule-helper-incomplete-line-fix:
submodule--helper: add a missing \n
Diffstat (limited to 'builtin/submodule--helper.c')
-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 8c72ea864c..0bf4aa088e 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 */ |