]> granicus.if.org Git - cgit/commitdiff
ui-patch.c: Fix signature delimiter
authorLukas Fleischer <cgit@cryptocrack.de>
Mon, 26 Aug 2013 18:38:32 +0000 (20:38 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Mon, 26 Aug 2013 19:01:50 +0000 (21:01 +0200)
Add a missing space after the "--" marker that introduces the patch
signature.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
ui-patch.c

index 4d35167565daa1259704c8d7ce06c3245a311b52..6df105e397a5e8589eecbef7db2489ca8345ed5c 100644 (file)
@@ -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);
        }
 }