From 7b62a8328632f89e1412e0d292399b5a4d1f9832 Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Thu, 2 Dec 2010 10:39:00 +0100 Subject: [PATCH] utils.h: Added missing typedef leMFT_REF. --- ntfsprogs/utils.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ntfsprogs/utils.h b/ntfsprogs/utils.h index cefcd14e..949fa979 100644 --- a/ntfsprogs/utils.h +++ b/ntfsprogs/utils.h @@ -132,4 +132,8 @@ static __inline__ ntfschar *ntfs_attr_get_name(ATTR_RECORD *attr) return (ntfschar*)((u8*)attr + le16_to_cpu(attr->name_offset)); } +/* The define 'leMFT_REF' is not present in libntfs-3g. It is only symbolic so + * typedef it to MFT_REF.*/ +typedef MFT_REF leMFT_REF; + #endif /* _NTFS_UTILS_H_ */