cgit

commit 334aed8ab42b9513af0f4458081abc033d66c535

Author: Lukas Fleischer <cgit@cryptocrack.de>

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>

 ui-patch.c | 2 +-


diff --git a/ui-patch.c b/ui-patch.c
index 4d35167565daa1259704c8d7ce06c3245a311b52..6df105e397a5e8589eecbef7db2489ca8345ed5c 100644
--- a/ui-patch.c
+++ b/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);
 	}
 }