diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-12 02:57:39 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-12 02:57:39 -0700 |
commit | 854de5a5341be4183c401157b9e5593d9a925f4f (patch) | |
tree | ef0228e123b91b9e4c11e2221eb62a8ff79c143e | |
parent | git-svn: add a message encouraging use of SVN::* libraries (diff) | |
download | tgif-854de5a5341be4183c401157b9e5593d9a925f4f.tar.xz |
apply --numstat -z: line termination fix.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | builtin-apply.c | 2 |
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); } } |