X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4f5b0756df0dfc925b9576db47ecce949c378e18..f08ca43472b518b93230acd853532d79b7e8a3a5:/syscall.c diff --git a/syscall.c b/syscall.c index 2607774b..5cdf052a 100644 --- a/syscall.c +++ b/syscall.c @@ -243,7 +243,7 @@ int do_fstat(int fd, STRUCT_STAT *st) OFF_T do_lseek(int fd, OFF_T offset, int whence) { -#ifdef SIZEOF_OFF64_T +#if SIZEOF_OFF64_T off64_t lseek64(); return lseek64(fd, offset, whence); #else