diff options
| author | Lukas Fleischer <[email protected]> | 2013-08-26 18:38:32 +0000 |
|---|---|---|
| committer | Jason A. Donenfeld <[email protected]> | 2013-08-26 19:01:50 +0000 |
| 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 <[email protected]>
| -rw-r--r-- | ui-patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |
