summaryrefslogtreecommitdiff
path: root/examples/VFS/skel_opaque.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-05 17:27:53 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-05 17:28:48 +0100
commit71d2287ec7740cf2089ddbef6991e7c3a80dcae0 (patch)
tree2ae34ca5a92a6c9a20d737fcd4b43a9cb34ce143 /examples/VFS/skel_opaque.c
parentf289851d70ea7a8f66a31e9af7d9fc6e16ebffef (diff)
downloadsamba-71d2287ec7740cf2089ddbef6991e7c3a80dcae0.tar.gz
samba-71d2287ec7740cf2089ddbef6991e7c3a80dcae0.tar.bz2
samba-71d2287ec7740cf2089ddbef6991e7c3a80dcae0.zip
examples/VFS: fix the configure and make with the new directory layout
metze
Diffstat (limited to 'examples/VFS/skel_opaque.c')
-rw-r--r--examples/VFS/skel_opaque.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index 48b497922a..2eb7a94776 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -52,9 +52,9 @@ static void skel_disconnect(vfs_handle_struct *handle, connection_struct *conn)
return;
}
-static SMB_BIG_UINT skel_disk_free(vfs_handle_struct *handle, const char *path,
- bool small_query, SMB_BIG_UINT *bsize,
- SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize)
+static uint64_t skel_disk_free(vfs_handle_struct *handle, const char *path,
+ bool small_query, uint64_t *bsize,
+ uint64_t *dfree, uint64_t *dsize)
{
return vfswrap_disk_free(NULL, path, small_query, bsize,
dfree, dsize);