aboutsummaryrefslogtreecommitdiffstats
path: root/ui-patch.c
diff options
context:
space:
mode:
authorLukas Fleischer <cgit@cryptocrack.de>2013-08-26 20:38:33 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2013-08-26 21:03:23 +0200
commit840858594e8b48560541792b717a71dd802d5d80 (patch)
treec04992d711f13361dcc096c7235f4e1f2cca5244 /ui-patch.c
parentui-patch.c: Fix signature delimiter (diff)
downloadcgit-840858594e8b48560541792b717a71dd802d5d80.tar.xz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-patch.c b/ui-patch.c
index 6df105e..333bb99 100644
--- a/ui-patch.c
+++ b/ui-patch.c
@@ -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);
}
}