mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
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:
parent
abb2266147
commit
f463919310
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user