Commit a02956e4 authored by Phillip Lougher's avatar Phillip Lougher

squashfs: fix compiler inline warning

Fix compiler warning where inline conflicts with non-inline
prototype.
Reported-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarPhillip Lougher <phillip@lougher.demon.co.uk>
parent 899f4530
......@@ -295,7 +295,7 @@ static const struct xattr_handler squashfs_xattr_security_handler = {
.get = squashfs_security_get
};
static inline const struct xattr_handler *squashfs_xattr_handler(int type)
static const struct xattr_handler *squashfs_xattr_handler(int type)
{
if (type & ~(SQUASHFS_XATTR_PREFIX_MASK | SQUASHFS_XATTR_VALUE_OOL))
/* ignore unrecognised type */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment