diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2005-10-24 08:57:59 +0100 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2005-10-24 08:57:59 +0100 |
commit | dda65b941f992ab10fda3d9f09539c68206b7114 (patch) | |
tree | 27468ef642b1d6e7a8b3c7f7f9a842e5ad92456e /fs/ntfs/attrib.c | |
parent | d04bd1fb60252f30f4f41a56613ade48df130588 (diff) | |
download | linux-dda65b941f992ab10fda3d9f09539c68206b7114.tar.bz2 |
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) struct page *put_this_page = NULL; int err = 0; BOOL ctx_is_temporary, ctx_needs_reset; - ntfs_attr_search_ctx old_ctx; + ntfs_attr_search_ctx old_ctx = { NULL, }; ntfs_debug("Mapping runlist part containing vcn 0x%llx.", (unsigned long long)vcn); |