about summary refs log tree commit diff stats
path: root/ui-commit.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c index 8310ce6..6b41017 100644 --- a/ui-commit.c +++ b/ui-commit.c
@@ -27,12 +27,12 @@ void cgit_print_commit(char *hex, const char *prefix)
27 hex = ctx.qry.head; 27 hex = ctx.qry.head;
28 28
29 if (get_sha1(hex, sha1)) { 29 if (get_sha1(hex, sha1)) {
30 cgit_print_error(fmt("Bad object id: %s", hex)); 30 cgit_print_error("Bad object id: %s", hex);
31 return; 31 return;
32 } 32 }
33 commit = lookup_commit_reference(sha1); 33 commit = lookup_commit_reference(sha1);
34 if (!commit) { 34 if (!commit) {
35 cgit_print_error(fmt("Bad commit reference: %s", hex)); 35 cgit_print_error("Bad commit reference: %s", hex);
36 return; 36 return;
37 } 37 }
38 info = cgit_parse_commit(commit); 38 info = cgit_parse_commit(commit);