Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-10-12 13:57:39 +0400
committerJunio C Hamano <junkio@cox.net>2006-10-12 13:57:39 +0400
commit854de5a5341be4183c401157b9e5593d9a925f4f (patch)
treeef0228e123b91b9e4c11e2221eb62a8ff79c143e /builtin-apply.c
parent83e9940a5ef79cedc36a24a4a89d097abf1b28c7 (diff)
apply --numstat -z: line termination fix.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r--builtin-apply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-apply.c b/builtin-apply.c
index de5f855266..e3ef04477c 100644
--- a/builtin-apply.c
+++ b/builtin-apply.c
@@ -2112,7 +2112,7 @@ static void numstat_patch_list(struct patch *patch)
quote_c_style(name, NULL, stdout, 0);
else
fputs(name, stdout);
- putchar('\n');
+ putchar(line_termination);
}
}