Diffstat (limited to 'ui-commit.c')
| -rw-r--r-- | ui-commit.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui-commit.c b/ui-commit.c index ed25824..25721ca 100644 --- a/ui-commit.c +++ b/ui-commit.c @@ -7,7 +7,6 @@ */ #include "cgit.h" -#include "html.h" static int files, slots; static int total_adds, total_rems, max_changes; @@ -63,16 +62,16 @@ void print_fileinfo(struct fileinfo *info) html("<tr>"); htmlf("<td class='mode'>"); if (is_null_sha1(info->new_sha1)) { - cgit_print_filemode(info->old_mode); + html_filemode(info->old_mode); } else { - cgit_print_filemode(info->new_mode); + html_filemode(info->new_mode); } if (info->old_mode != info->new_mode && !is_null_sha1(info->old_sha1) && !is_null_sha1(info->new_sha1)) { html("<span class='modechange'>["); - cgit_print_filemode(info->old_mode); + html_filemode(info->old_mode); html("]</span>"); } htmlf("</td><td class='%s'>", class); |