diff options
author | Lukas Fleischer | 2013-08-26 20:38:33 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-08-26 21:03:23 +0200 |
commit | 840858594e8b48560541792b717a71dd802d5d80 (patch) | |
tree | c04992d711f13361dcc096c7235f4e1f2cca5244 /ui-patch.c | |
parent | 334aed8ab42b9513af0f4458081abc033d66c535 (diff) | |
download | cgit-840858594e8b48560541792b717a71dd802d5d80.tar.gz cgit-840858594e8b48560541792b717a71dd802d5d80.tar.bz2 cgit-840858594e8b48560541792b717a71dd802d5d80.zip |
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 'ui-patch.c')
-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, | |||
80 | 80 | ||
81 | while ((commit = get_revision(&rev)) != NULL) { | 81 | while ((commit = get_revision(&rev)) != NULL) { |
82 | log_tree_commit(&rev, commit); | 82 | log_tree_commit(&rev, commit); |
83 | printf("-- \ncgit %s\n", cgit_version); | 83 | printf("-- \ncgit %s\n\n", cgit_version); |
84 | } | 84 | } |
85 | } | 85 | } |