Introduction
Introduction Statistics Contact Development Disclaimer Help
tfix cast to uintmax_t - stagit - static git page generator
git clone git://src.adamsgaard.dk/stagit
Log
Files
Refs
README
LICENSE
---
commit c750958b95624fd6bd45f817e255fe19aa412534
parent ee4c340ce6d24adf89df21d76e8849296efb0a34
Author: Hiltjo Posthuma <[email protected]>
Date: Wed, 6 Jan 2016 16:04:37 +0100
fix cast to uintmax_t
Diffstat:
M stagit.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/stagit.c b/stagit.c
t@@ -628,7 +628,7 @@ writeblob(git_object *obj, const char *filename, git_off_t…
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)) {
t@@ -734,7 +734,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branc…
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);
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.