From mboxrd@z Thu Jan 1 00:00:00 1970 From: cgit at cryptocrack.de (Lukas Fleischer) Date: Mon, 26 Aug 2013 20:38:32 +0200 Subject: [PATCH 2/5] ui-patch.c: Fix signature delimiter In-Reply-To: <1377542315-19728-1-git-send-email-cgit@cryptocrack.de> References: <1377542315-19728-1-git-send-email-cgit@cryptocrack.de> Message-ID: <1377542315-19728-3-git-send-email-cgit@cryptocrack.de> Add a missing space after the "--" marker that introduces the patch signature. Signed-off-by: Lukas Fleischer --- ui-patch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-patch.c b/ui-patch.c index 4d35167..6df105e 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", cgit_version); } } -- 1.8.4.rc3.500.gc3113b0