ui-patch.c: Fix signature delimiter Add a missing space after the "--" marker that introduces the patch signature. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Lukas Fleischer cgit@cryptocrack.de
Mon, 26 Aug 2013 20:38:32 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
ui-patch.c
→
ui-patch.c
@@ -80,6 +80,6 @@ prepare_revision_walk(&rev);
while ((commit = get_revision(&rev)) != NULL) { log_tree_commit(&rev, commit); - printf("--\ncgit %s\n", cgit_version); + printf("-- \ncgit %s\n", cgit_version); } }