diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2005-10-24 03:57:59 -0400 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2005-10-24 03:57:59 -0400 |
commit | dda65b941f992ab10fda3d9f09539c68206b7114 (patch) | |
tree | 27468ef642b1d6e7a8b3c7f7f9a842e5ad92456e /fs/ntfs/attrib.c | |
parent | d04bd1fb60252f30f4f41a56613ade48df130588 (diff) |
NTFS: Fix compilation warnings with gcc-4.0.2 on SUSE 10.0.
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/attrib.c')
-rw-r--r-- | fs/ntfs/attrib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/attrib.c b/fs/ntfs/attrib.c index df2e2091f936..eda056bac256 100644 --- a/fs/ntfs/attrib.c +++ b/fs/ntfs/attrib.c | |||
@@ -91,7 +91,7 @@ int ntfs_map_runlist_nolock(ntfs_inode *ni, VCN vcn, ntfs_attr_search_ctx *ctx) | |||
91 | struct page *put_this_page = NULL; | 91 | struct page *put_this_page = NULL; |
92 | int err = 0; | 92 | int err = 0; |
93 | BOOL ctx_is_temporary, ctx_needs_reset; | 93 | BOOL ctx_is_temporary, ctx_needs_reset; |
94 | ntfs_attr_search_ctx old_ctx; | 94 | ntfs_attr_search_ctx old_ctx = { NULL, }; |
95 | 95 | ||
96 | ntfs_debug("Mapping runlist part containing vcn 0x%llx.", | 96 | ntfs_debug("Mapping runlist part containing vcn 0x%llx.", |
97 | (unsigned long long)vcn); | 97 | (unsigned long long)vcn); |