diff options
author | Lukas Fleischer <cgit@cryptocrack.de> | 2013-08-26 20:38:33 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-08-26 21:03:23 +0200 |
commit | 840858594e8b48560541792b717a71dd802d5d80 (patch) | |
tree | c04992d711f13361dcc096c7235f4e1f2cca5244 /ui-patch.c | |
parent | 334aed8ab42b9513af0f4458081abc033d66c535 (diff) |
ui-patch.c: Add additional newline after each patch
For consistency with git-format-patch(1).
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to '')
-rw-r--r-- | ui-patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,6 +80,6 @@ void cgit_print_patch(const char *new_rev, const char *old_rev, while ((commit = get_revision(&rev)) != NULL) { log_tree_commit(&rev, commit); - printf("-- \ncgit %s\n", cgit_version); + printf("-- \ncgit %s\n\n", cgit_version); } } |