From: Christoph Hellwig <hch@infradead.org> Date: Tue, 1 Sep 2009 23:56:55 +0000 (-0400) Subject: xfs: un-static xfs_inobt_lookup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=81e251766e8f8c9d7abb5db784e58c5c45f82797;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git xfs: un-static xfs_inobt_lookup xfs_inobt_lookup is also used in xfs_itable.c, remove the STATIC modifier from it's declaration to fix non-debug builds. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Felix Blyakher <felixb@sgi.com> Signed-off-by: Felix Blyakher <felixb@sgi.com> --- diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index d12d805f20a5..ab64f3efb43b 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c @@ -59,7 +59,7 @@ xfs_ialloc_cluster_alignment( /* * Lookup a record by ino in the btree given by cur. */ -STATIC int /* error */ +int /* error */ xfs_inobt_lookup( struct xfs_btree_cur *cur, /* btree cursor */ xfs_agino_t ino, /* starting inode of chunk */