aboutsummaryrefslogtreecommitdiffstats
path: root/tools/blktap2/vhd/lib/vhd-util-coalesce.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/blktap2/vhd/lib/vhd-util-coalesce.c')
-rw-r--r--tools/blktap2/vhd/lib/vhd-util-coalesce.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/blktap2/vhd/lib/vhd-util-coalesce.c b/tools/blktap2/vhd/lib/vhd-util-coalesce.c
index f6461fc687..63dcf6010e 100644
--- a/tools/blktap2/vhd/lib/vhd-util-coalesce.c
+++ b/tools/blktap2/vhd/lib/vhd-util-coalesce.c
@@ -35,12 +35,12 @@
static int
__raw_io_write(int fd, char* buf, uint64_t sec, uint32_t secs)
{
- off64_t off;
+ off_t off;
size_t ret;
errno = 0;
- off = lseek64(fd, vhd_sectors_to_bytes(sec), SEEK_SET);
- if (off == (off64_t)-1) {
+ off = lseek(fd, vhd_sectors_to_bytes(sec), SEEK_SET);
+ if (off == (off_t)-1) {
printf("raw parent: seek(0x%08"PRIx64") failed: %d\n",
vhd_sectors_to_bytes(sec), -errno);
return -errno;