Fixed the type of argument of utils_mount_volume()
parent
b3d62451e8
commit
7eccaa3c53
|
@ -253,7 +253,7 @@ int utils_valid_device(const char *name, int force)
|
|||
/**
|
||||
* utils_mount_volume - Mount an NTFS volume
|
||||
*/
|
||||
ntfs_volume * utils_mount_volume(const char *device, ntfs_mount_flags flags)
|
||||
ntfs_volume * utils_mount_volume(const char *device, unsigned long flags)
|
||||
{
|
||||
ntfs_volume *vol;
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ ATTR_RECORD * find_attribute(const ATTR_TYPES type, ntfs_attr_search_ctx *ctx);
|
|||
ATTR_RECORD * find_first_attribute(const ATTR_TYPES type, MFT_RECORD *mft);
|
||||
|
||||
int utils_valid_device(const char *name, int force);
|
||||
ntfs_volume * utils_mount_volume(const char *device, ntfs_mount_flags flags);
|
||||
ntfs_volume * utils_mount_volume(const char *device, unsigned long flags);
|
||||
|
||||
/**
|
||||
* defines...
|
||||
|
|
Loading…
Reference in New Issue