if ((z = memalign(getpagesize(), zsize)) == NULL) {
fprintf(stderr,
_("%s: %s can't memalign %d bytes: %s\n"),
- progname, __FUNCTION__, zsize, strerror(errno));
+ progname, __FUNCTION__, (int)zsize, strerror(errno));
exit(1);
}
memset(z, 0, zsize);
if ((lseek64(fd, start_offset, SEEK_SET)) < 0) {
fprintf(stderr, _("%s: %s seek to offset %llu failed: %s\n"),
- progname, __FUNCTION__, start_offset, strerror(errno));
+ progname, __FUNCTION__,
+ (unsigned long long)start_offset, strerror(errno));
exit(1);
}