diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-31 09:43:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-31 09:43:07 -0700 |
commit | 97c793404910fbe8b51ec29661619ad0196ac1ae (patch) | |
tree | ab2117ad191609416593bbef324d261b3cae8bc4 | |
parent | 5fe1484a9b89e22f14d94d5b050c39db7ad65c81 (diff) | |
parent | 8212333012fa4e95373269526e4a702be7bb2d4b (diff) | |
download | git-97c793404910fbe8b51ec29661619ad0196ac1ae.tar.gz git-97c793404910fbe8b51ec29661619ad0196ac1ae.tar.xz |
Merge branch 'nd/maint-i18n-diffstat'
* nd/maint-i18n-diffstat:
i18n: leave \n out of translated diffstat
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1397,7 +1397,7 @@ int print_stat_summary(FILE *fp, int files, int insertions, int deletions) if (!files) { assert(insertions == 0 && deletions == 0); - return fputs(_(" 0 files changed\n"), fp); + return fprintf(fp, "%s\n", _(" 0 files changed")); } strbuf_addf(&sb, |