summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_shadow_copy2.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-07-19 02:32:44 +0200
committerVolker Lendecke <vl@samba.org>2009-07-19 02:36:59 +0200
commitce378e7c51913c1b110e62dc35c205d8d2fad58a (patch)
tree1888c8cf4ecc81e390fa49d77ecb9aa3ae24adef /source3/modules/vfs_shadow_copy2.c
parent27087e6a878aa216d73ea629535be49fca10315f (diff)
downloadsamba-ce378e7c51913c1b110e62dc35c205d8d2fad58a.tar.gz
samba-ce378e7c51913c1b110e62dc35c205d8d2fad58a.tar.bz2
samba-ce378e7c51913c1b110e62dc35c205d8d2fad58a.zip
Fix a few type errors in VFS modules
Diffstat (limited to 'source3/modules/vfs_shadow_copy2.c')
-rw-r--r--source3/modules/vfs_shadow_copy2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c
index 1f300a055c..29247ac7c2 100644
--- a/source3/modules/vfs_shadow_copy2.c
+++ b/source3/modules/vfs_shadow_copy2.c
@@ -549,7 +549,8 @@ static int shadow_copy2_rmdir(vfs_handle_struct *handle, const char *fname)
SHADOW2_NEXT(RMDIR, (handle, name), int, -1);
}
-static int shadow_copy2_chflags(vfs_handle_struct *handle, const char *fname, int flags)
+static int shadow_copy2_chflags(vfs_handle_struct *handle, const char *fname,
+ unsigned int flags)
{
SHADOW2_NEXT(CHFLAGS, (handle, name, flags), int, -1);
}