Commit fd3e8c54 authored by Andrew Morton's avatar Andrew Morton Committed by James Toy

ERROR: "(foo*)" should be "(foo *)"

#62: FILE: fs/minix/dir.c:481:
+		struct inode *inode = (struct inode*)mapping->host;

total: 1 errors, 0 warnings, 46 lines checked

./patches/v3-minixfs-add-missing-directory-type-checking.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: "Doug Graham" <dgraham@nortel.com>
Cc: Doug Graham <dgraham@nortel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 414b44ba
......@@ -478,7 +478,7 @@ ino_t minix_inode_by_name(struct dentry *dentry)
if (de) {
struct address_space *mapping = page->mapping;
struct inode *inode = (struct inode*)mapping->host;
struct inode *inode = mapping->host;
struct minix_sb_info *sbi = minix_sb(inode->i_sb);
if (sbi->s_version == MINIX_V3)
......
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