diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-17 19:53:07 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-17 19:53:07 +0100 |
commit | d073ffa0a26256a94c5e1ab53b50cc147631081f (patch) | |
tree | dbeb58d3c929750d137db0334668c7c7cd41f044 | |
parent | c3014aaaba1d98b8e54537cef6246add1ab62094 (diff) |
file_size is uint32_t on latest libgit2, thanks uggedal for reporting it!
-rw-r--r-- | urmoms.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -580,7 +580,7 @@ writeblob(const git_index_entry *entry) fp = efopen(fpath, "w+b"); writeheader(fp); - fprintf(fp, "<p>%s (%" PRIu64 "b)</p><hr/>", entry->path, entry->file_size); + fprintf(fp, "<p>%s (%" PRIu32 "b)</p><hr/>", entry->path, entry->file_size); if (git_blob_is_binary((git_blob *)obj)) { fprintf(fp, "<p>Binary file</p>\n"); } else { @@ -621,7 +621,7 @@ writefiles(FILE *fp) fputs(".html\">", fp); xmlencode(fp, entry->path, strlen(entry->path)); fputs("</a></td><td class=\"num\">", fp); - fprintf(fp, "%" PRIu64, entry->file_size); + fprintf(fp, "%" PRIu32, entry->file_size); fputs("</td></tr>\n", fp); writeblob(entry); |