diff options
Diffstat (limited to 'arch/um/os-Linux/file.c')
-rw-r--r-- | arch/um/os-Linux/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index f52006ee70e8..d463a8205637 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c | |||
@@ -267,9 +267,9 @@ void os_close_file(int fd) | |||
267 | close(fd); | 267 | close(fd); |
268 | } | 268 | } |
269 | 269 | ||
270 | int os_seek_file(int fd, __u64 offset) | 270 | int os_seek_file(int fd, unsigned long long offset) |
271 | { | 271 | { |
272 | __u64 actual; | 272 | unsigned long long actual; |
273 | 273 | ||
274 | actual = lseek64(fd, offset, SEEK_SET); | 274 | actual = lseek64(fd, offset, SEEK_SET); |
275 | if(actual != offset) | 275 | if(actual != offset) |