diff options
author | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 17:36:52 +1100 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 17:36:52 +1100 |
commit | 493dca6178cf4a6ae2a16c602d6cb455bb7d31bd (patch) | |
tree | 3eb5f6d98d939496c90ede9ef6472f7f1fc90797 /fs | |
parent | 99fa8cb3c580d4445fe8fc239454e8f37a3b6847 (diff) | |
download | kernel_samsung_espresso10-493dca6178cf4a6ae2a16c602d6cb455bb7d31bd.zip kernel_samsung_espresso10-493dca6178cf4a6ae2a16c602d6cb455bb7d31bd.tar.gz kernel_samsung_espresso10-493dca6178cf4a6ae2a16c602d6cb455bb7d31bd.tar.bz2 |
[XFS] Fix build warning - xfs_fs_alloc_inode() needs a return statement
SGI-PV: 988141
SGI-Modid: xfs-linux-melb:xfs-kern:32325a
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index bb535a7..1d67d7f 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c @@ -872,6 +872,7 @@ xfs_fs_alloc_inode( struct super_block *sb) { BUG(); + return NULL; } /* |