Diffstat (limited to 'ui-diff.c')
| -rw-r--r-- | ui-diff.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -131,9 +131,10 @@ void cgit_print_diff(const char *new_rev, const char *old_rev) if (!commit2 || parse_commit(commit2)) cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(sha2))); } + html("<table class='diff'>"); html("<tr><td>"); - cgit_diff_tree(sha2, sha1, filepair_cb, NULL); + cgit_diff_tree(sha2, sha1, filepair_cb); html("</td></tr>"); html("</table>"); } |