ntfs-3g_common.h: Fix improper type for 'dmtime' in ntfs_fuse_context_t.

This field is always assigned a signed value, and compared to other
signed values (ntfs_time values are signed little-endian 32-bit
integers).

This fixes two compiler warnings about signed/unsigned comparison.
This commit is contained in:
Erik Larsson 2016-02-11 14:06:53 +01:00
parent abb2266147
commit f463919310

View File

@ -118,7 +118,7 @@ typedef struct {
unsigned int dmask;
ntfs_fuse_streams_interface streams;
ntfs_atime_t atime;
u64 dmtime;
s64 dmtime;
BOOL ro;
BOOL show_sys_files;
BOOL hide_hid_files;