diff options
author | Volker Lendecke <vl@samba.org> | 2009-07-18 21:29:15 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-07-24 02:16:17 +0200 |
commit | 68028a73b6fd2bce66eabea5dd8a4187a6df6729 (patch) | |
tree | bd3c8ad1782cf63cf1c2b5f86be6112ecbc61131 /source3 | |
parent | 4b76f279d10489c03290a331478d40ddea1ef729 (diff) | |
download | samba-68028a73b6fd2bce66eabea5dd8a4187a6df6729.tar.gz samba-68028a73b6fd2bce66eabea5dd8a4187a6df6729.tar.bz2 samba-68028a73b6fd2bce66eabea5dd8a4187a6df6729.zip |
Some more VFS type errors
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_commit.c b/source3/modules/vfs_commit.c index 6cf1c1a35d..ccf733d09b 100644 --- a/source3/modules/vfs_commit.c +++ b/source3/modules/vfs_commit.c @@ -231,7 +231,7 @@ static int commit_open( static ssize_t commit_write( vfs_handle_struct * handle, files_struct * fsp, - void * data, + const void * data, size_t count) { ssize_t ret; @@ -249,7 +249,7 @@ static ssize_t commit_write( static ssize_t commit_pwrite( vfs_handle_struct * handle, files_struct * fsp, - void * data, + const void * data, size_t count, SMB_OFF_T offset) { |