Diffstat (limited to 'cache.c')
| -rw-r--r-- | cache.c | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -15,7 +15,6 @@ #include "cgit.h" #include "cache.h" -#include "html.h" #define CACHE_BUFSIZE (1024 * 4) @@ -405,12 +404,12 @@ int cache_ls(const char *path) fullname.buf, strerror(err), err); continue; } - htmlf("%s %s %10"PRIuMAX" %s\n", - fullname.buf, - sprintftime("%Y-%m-%d %H:%M:%S", - slot.cache_st.st_mtime), - (uintmax_t)slot.cache_st.st_size, - slot.buf); + printf("%s %s %10"PRIuMAX" %s\n", + fullname.buf, + sprintftime("%Y-%m-%d %H:%M:%S", + slot.cache_st.st_mtime), + (uintmax_t)slot.cache_st.st_size, + slot.buf); close_slot(&slot); } closedir(dir); |