diff options
author | Jeremy Allison <jra@samba.org> | 2007-09-28 01:32:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:31:02 -0500 |
commit | 470ebf8a3504474dea5c324d01282e59c034a236 (patch) | |
tree | d6698c3f90c942a895d9b3aca0fd0e03e8f0eb60 /source3/include | |
parent | 314cb03db1ed7fefade39f7f15906e7fc6076382 (diff) | |
download | samba-470ebf8a3504474dea5c324d01282e59c034a236.tar.gz samba-470ebf8a3504474dea5c324d01282e59c034a236.tar.bz2 samba-470ebf8a3504474dea5c324d01282e59c034a236.zip |
r25399: Excise uint - > uint32 (where appropriate) or unsigned int.
Jeremy.
(This used to be commit b4ee924000f4a21b16a70e08e58331d209c4d114)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 768c9fbcab..a5fe4afe6a 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -296,7 +296,7 @@ struct vfs_ops { void *private_data, struct notify_event *ev), void *private_data, void *handle_p); - int (*chflags)(struct vfs_handle_struct *handle, const char *path, uint flags); + int (*chflags)(struct vfs_handle_struct *handle, const char *path, unsigned int flags); struct file_id (*file_id_create)(struct vfs_handle_struct *handle, SMB_DEV_T dev, SMB_INO_T inode); /* NT ACL operations. */ |