Skip to content

Commit

Permalink
Merge branch 'nd/maint-i18n-diffstat'
Browse files Browse the repository at this point in the history
* nd/maint-i18n-diffstat:
  i18n: leave \n out of translated diffstat
  • Loading branch information
gitster committed Jul 31, 2012
2 parents 5fe1484 + 8212333 commit 97c7934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diff.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1397,7 +1397,7 @@ int print_stat_summary(FILE *fp, int files, int insertions, int deletions)


if (!files) { if (!files) {
assert(insertions == 0 && deletions == 0); assert(insertions == 0 && deletions == 0);
return fputs(_(" 0 files changed\n"), fp); return fprintf(fp, "%s\n", _(" 0 files changed"));
} }


strbuf_addf(&sb, strbuf_addf(&sb,
Expand Down

0 comments on commit 97c7934

Please sign in to comment.