aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qxpak.c')
-rw-r--r--qxpak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qxpak.c b/qxpak.c
index 9a2e11b..d7cec6f 100644
--- a/qxpak.c
+++ b/qxpak.c
@@ -283,7 +283,7 @@ _xpak_add_file(int dir_fd, const char *filename, struct stat *st, FILE *findex,
/* the xpak format can only store files whose size is a 32bit int
* so we have to make sure we don't store a big file */
if (in_len != st->st_size) {
- warnf("File is too big: %"PRIu64"u", (uint64_t)st->st_size);
+ warnf("File is too big: %"PRIu64, (uint64_t)st->st_size);
fclose(fin);
goto fake_data_len;
}