From f463919310f9a6e263e6e3bce9ae3bc059c86e92 Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Thu, 11 Feb 2016 14:06:53 +0100 Subject: [PATCH] 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. --- src/ntfs-3g_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g_common.h b/src/ntfs-3g_common.h index e68c6992..6e573a65 100644 --- a/src/ntfs-3g_common.h +++ b/src/ntfs-3g_common.h @@ -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;