From 660180fec850121c431a498fccd7e4fdb18c38aa Mon Sep 17 00:00:00 2001 From: gardners Date: Mon, 17 Feb 2014 15:14:14 +1030 Subject: [PATCH] fix compile errors introduced in off_t/off64_t fix. --- os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os.h b/os.h index b8bbf26c..14f15f69 100644 --- a/os.h +++ b/os.h @@ -93,7 +93,7 @@ __SERVAL_DNA__OS_INLINE int bcmp(const void *s1, const void *s2, size_t n) { # error "lseek64(2) system call is not available and `sizeof(off_t) is not 8" # endif # ifndef HAVE_OFF64_T -typedef off64_t off_t +typedef off_t off64_t; __SERVAL_DNA__OS_INLINE off64_t lseek64(int fd, off64_t offset, int whence) { return lseek(fd, offset, whence); }