From 7eccaa3c532d5bd025cbed5655efa4ad83596740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Mon, 10 Jan 2011 11:19:54 +0100 Subject: [PATCH] Fixed the type of argument of utils_mount_volume() --- ntfsprogs/utils.c | 2 +- ntfsprogs/utils.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfsprogs/utils.c b/ntfsprogs/utils.c index 94ba6df9..c492758d 100644 --- a/ntfsprogs/utils.c +++ b/ntfsprogs/utils.c @@ -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; diff --git a/ntfsprogs/utils.h b/ntfsprogs/utils.h index cb4ac9d6..3974da00 100644 --- a/ntfsprogs/utils.h +++ b/ntfsprogs/utils.h @@ -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...