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>
This commit is contained in:
Lukas Fleischer 2013-08-26 20:38:32 +02:00 提交者 Jason A. Donenfeld
父節點 370535fc70
當前提交 334aed8ab4
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -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);
}
}