Skip to content

Commit

Permalink
apply --numstat -z: line termination fix.
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Oct 12, 2006
1 parent 83e9940 commit 854de5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin-apply.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 854de5a

Please sign in to comment.