about summary refs log tree commit diff stats
path: root/ui-commit.c
diff options
context:
space:
mode:
authorLars Hjemli2008-04-17 18:29:50 +0200
committerLars Hjemli2008-04-17 18:33:33 +0200
commit9ec5cd7944a7099515b7d41107007d6332a2540e (patch)
tree3d3284c73a72e7122cde02b0eb7ff1f4d8cd1a0d /ui-commit.c
parentCleanup page header (diff)
downloadcgit-9ec5cd7944a7099515b7d41107007d6332a2540e.tar.gz
cgit-9ec5cd7944a7099515b7d41107007d6332a2540e.zip
Fix commitdiff annoyance
Someone were a bit sloppy when the commitdiff got included 'inline' in
commit 89aa3c0d0a4c6d9885272602005975b763ea1604. This patch deletes a
stray `)` and makes sure the diffstat summary `<div>` is closed before
the full diff is printed.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-commit.c b/ui-commit.c index dd36cc0..12a96fb 100644 --- a/ui-commit.c +++ b/ui-commit.c
@@ -227,10 +227,10 @@ void cgit_print_commit(char *hex)
227 html("<div class='diffstat-summary'>"); 227 html("<div class='diffstat-summary'>");
228 htmlf("%d files changed, %d insertions, %d deletions", 228 htmlf("%d files changed, %d insertions, %d deletions",
229 files, total_adds, total_rems); 229 files, total_adds, total_rems);
230 html("</div>");
230 cgit_print_diff(ctx.qry.sha1, 231 cgit_print_diff(ctx.qry.sha1,
231 sha1_to_hex(commit->parents->item->object.sha1), 232 sha1_to_hex(commit->parents->item->object.sha1),
232 NULL); 233 NULL);
233 html(")</div>");
234 } 234 }
235 cgit_free_commitinfo(info); 235 cgit_free_commitinfo(info);
236} 236}