diff options
author | Lukas Fleischer | 2013-08-26 20:38:32 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-08-26 21:01:50 +0200 |
commit | 334aed8ab42b9513af0f4458081abc033d66c535 (patch) | |
tree | 8d4e10dabdb127585163c3d1e4bf1dce3be40db5 | |
parent | t0108: Avoid unnecessary fork() (diff) | |
download | cgit-334aed8ab42b9513af0f4458081abc033d66c535.tar.gz cgit-334aed8ab42b9513af0f4458081abc033d66c535.zip |
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>
-rw-r--r-- | ui-patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
80 | 80 | ||
81 | while ((commit = get_revision(&rev)) != NULL) { | 81 | while ((commit = get_revision(&rev)) != NULL) { |
82 | log_tree_commit(&rev, commit); | 82 | log_tree_commit(&rev, commit); |
83 | printf("--\ncgit %s\n", cgit_version); | 83 | printf("-- \ncgit %s\n", cgit_version); |
84 | } | 84 | } |
85 | } | 85 | } |