]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-commit.c
Fix several whitespace errors
[cgit.git] / ui-commit.c
index a69dec649f05cb8035f415dc395ed6d1f312f921..74f37c8a0ff4222c13e410635fc0fac3d0ba9049 100644 (file)
@@ -39,7 +39,7 @@ void cgit_print_commit(char *hex, const char *prefix)
        format_note(NULL, sha1, &notes, PAGE_ENCODING, 0);
 
        load_ref_decorations(DECORATE_FULL_REFS);
-       
+
        cgit_print_diff_ctrls();
        html("<table summary='commit info' class='commit-info'>\n");
        html("<tr><th>author</th><td>");
@@ -75,7 +75,7 @@ void cgit_print_commit(char *hex, const char *prefix)
                cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix);
        }
        html("</td></tr>\n");
-       for (p = commit->parents; p ; p = p->next) {
+       for (p = commit->parents; p; p = p->next) {
                parent = lookup_commit_reference(p->item->object.sha1);
                if (!parent) {
                        html("<tr><td colspan='3'>");
@@ -106,7 +106,7 @@ void cgit_print_commit(char *hex, const char *prefix)
        html("</table>\n");
        html("<div class='commit-subject'>");
        if (ctx.repo->commit_filter)
-               cgit_open_filter(ctx.repo->commit_filter, ctx.repo);
+               cgit_open_filter(ctx.repo->commit_filter);
        html_txt(info->subject);
        if (ctx.repo->commit_filter)
                cgit_close_filter(ctx.repo->commit_filter);
@@ -114,7 +114,7 @@ void cgit_print_commit(char *hex, const char *prefix)
        html("</div>");
        html("<div class='commit-msg'>");
        if (ctx.repo->commit_filter)
-               cgit_open_filter(ctx.repo->commit_filter, ctx.repo);
+               cgit_open_filter(ctx.repo->commit_filter);
        html_txt(info->msg);
        if (ctx.repo->commit_filter)
                cgit_close_filter(ctx.repo->commit_filter);
@@ -123,7 +123,7 @@ void cgit_print_commit(char *hex, const char *prefix)
                html("<div class='notes-header'>Notes</div>");
                html("<div class='notes'>");
                if (ctx.repo->commit_filter)
-                       cgit_open_filter(ctx.repo->commit_filter, ctx.repo);
+                       cgit_open_filter(ctx.repo->commit_filter);
                html_txt(notes.buf);
                if (ctx.repo->commit_filter)
                        cgit_close_filter(ctx.repo->commit_filter);