fix cast to uintmax_t
This commit is contained in:
parent
ee4c340ce6
commit
c750958b95
1 changed files with 2 additions and 2 deletions
4
stagit.c
4
stagit.c
|
@ -628,7 +628,7 @@ writeblob(git_object *obj, const char *filename, git_off_t filesize)
|
|||
writeheader(fp);
|
||||
fputs("<p> ", fp);
|
||||
xmlencode(fp, filename, strlen(filename));
|
||||
fprintf(fp, " (%jub)", filesize);
|
||||
fprintf(fp, " (%jub)", (uintmax_t)filesize);
|
||||
fputs("</p><hr/>", fp);
|
||||
|
||||
if (git_blob_is_binary((git_blob *)obj)) {
|
||||
|
@ -734,7 +734,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path)
|
|||
fputs(".html\">", fp);
|
||||
xmlencode(fp, filename, strlen(filename));
|
||||
fputs("</a></td><td class=\"num\">", fp);
|
||||
fprintf(fp, "%ju", filesize);
|
||||
fprintf(fp, "%ju", (uintmax_t)filesize);
|
||||
fputs("</td></tr>\n", fp);
|
||||
|
||||
writeblob(obj, filename, filesize);
|
||||
|
|
Loading…
Reference in a new issue