From 06ebf6dccae461c777dcf24eabdae1073bfeed68 Mon Sep 17 00:00:00 2001 From: Masanari Iida Date: Sat, 11 Feb 2012 21:35:12 +0900 Subject: [PATCH] --- yaml --- r: 291736 b: refs/heads/master c: 0cc785ecbf6c04c1ef01c311accee859c856a6b9 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/cramfs/inode.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 86cd04e3ebdd..490cf7f15ae0 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 7d65fd76e78f16be60ec01f11ce56969627e7b63 +refs/heads/master: 0cc785ecbf6c04c1ef01c311accee859c856a6b9 diff --git a/trunk/fs/cramfs/inode.c b/trunk/fs/cramfs/inode.c index a2ee8f9f5a38..04d51f9333d7 100644 --- a/trunk/fs/cramfs/inode.c +++ b/trunk/fs/cramfs/inode.c @@ -257,10 +257,10 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent) /* Do sanity checks on the superblock */ if (super.magic != CRAMFS_MAGIC) { - /* check for wrong endianess */ + /* check for wrong endianness */ if (super.magic == CRAMFS_MAGIC_WEND) { if (!silent) - printk(KERN_ERR "cramfs: wrong endianess\n"); + printk(KERN_ERR "cramfs: wrong endianness\n"); goto out; } @@ -270,7 +270,7 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent) mutex_unlock(&read_mutex); if (super.magic != CRAMFS_MAGIC) { if (super.magic == CRAMFS_MAGIC_WEND && !silent) - printk(KERN_ERR "cramfs: wrong endianess\n"); + printk(KERN_ERR "cramfs: wrong endianness\n"); else if (!silent) printk(KERN_ERR "cramfs: wrong magic\n"); goto out;