diff options
author | Nathan Scott <nathans@sgi.com> | 2006-06-28 10:13:52 +1000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-28 10:13:52 +1000 |
commit | 6fdf8ccc09fd764a9cce11006aa3fca53ac1c895 (patch) | |
tree | 0826433cc788979489ba1a2cc0df9cdad4cee9c5 /fs/xfs/xfs_inode.c | |
parent | 73024cf11522c0233228453984b2a2b37885e336 (diff) | |
download | linux-3.10-6fdf8ccc09fd764a9cce11006aa3fca53ac1c895.tar.gz linux-3.10-6fdf8ccc09fd764a9cce11006aa3fca53ac1c895.tar.bz2 linux-3.10-6fdf8ccc09fd764a9cce11006aa3fca53ac1c895.zip |
[XFS] Rework code snippets slightly to remove remaining recent-gcc
warnings.
SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:26364a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r-- | fs/xfs/xfs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 5fa0adb7e17..86c1bf0bba9 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -1961,9 +1961,9 @@ xfs_iunlink_remove( xfs_agino_t agino; xfs_agino_t next_agino; xfs_buf_t *last_ibp; - xfs_dinode_t *last_dip; + xfs_dinode_t *last_dip = NULL; short bucket_index; - int offset, last_offset; + int offset, last_offset = 0; int error; int agi_ok; |