1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Remove off64_t declarations

This commit is contained in:
Andrew Bartlett 2012-03-28 10:03:24 +11:00
parent 694d81a7b5
commit 214a668ff3
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ static int prealloc_open(vfs_handle_struct* handle,
mode_t mode)
{
int fd;
off64_t size = 0;
off_t size = 0;
const char * dot;
char fext[10];

View File

@ -20,7 +20,7 @@
#include "smbd/smbd.h"
#if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL)
ssize_t readahead(int fd, off64_t offset, size_t count);
ssize_t readahead(int fd, off_t offset, size_t count);
#endif
struct readahead_data {