summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-06-22 10:20:54 -0700
committerH. Peter Anvin <hpa@zytor.com>2010-06-22 10:20:54 -0700
commita4c9907d0579292b1c97f2405ba61bf65cce75d4 (patch)
tree682a94a7e668b8ba4605370e2cfc2d2941dc22f1 /utils
parente928919b5b58b518e15afaff92c319b2b832dbc8 (diff)
downloadsyslinux-a4c9907d0579292b1c97f2405ba61bf65cce75d4.tar.gz
isohybrid: fix another type mismatch
Fix another printf type mismatch in the C version of isohybrid. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/isohybrid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/isohybrid.c b/utils/isohybrid.c
index 2ceeb346..38257f68 100644
--- a/utils/isohybrid.c
+++ b/utils/isohybrid.c
@@ -499,7 +499,7 @@ main(int argc, char *argv[])
padding = (frac > 0) ? cylsize - frac : 0;
if (mode & VERBOSE)
- printf("imgsize: %lu, padding: %d\n", isostat.st_size, padding);
+ printf("imgsize: %zu, padding: %d\n", (size_t)isostat.st_size, padding);
cc = c = (isostat.st_size + padding) / cylsize;
if (c > 1024)