Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 291736
b: refs/heads/master
c: 0cc785e
h: refs/heads/master
v: v3
  • Loading branch information
Masanari Iida authored and Jiri Kosina committed Feb 21, 2012
1 parent 6ee4080 commit 06ebf6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7d65fd76e78f16be60ec01f11ce56969627e7b63
refs/heads/master: 0cc785ecbf6c04c1ef01c311accee859c856a6b9
6 changes: 3 additions & 3 deletions trunk/fs/cramfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
Expand Down

0 comments on commit 06ebf6d

Please sign in to comment.