diff mbox

fix openpromfs compile

Message ID alpine.SOC.1.00.1011031134290.17199@math.ut.ee
State Awaiting Upstream
Delegated to: David Miller
Headers show

Commit Message

Meelis Roos Nov. 3, 2010, 9:37 a.m. UTC
Fix openpromfs compilation by adding a missing semicolon in 
fs/openpromfs/inode.c openprom_mount().

Signed-off-by: Meelis Roos <mroos@linux.ee>

Comments

David Miller Nov. 3, 2010, 12:20 p.m. UTC | #1
From: Meelis Roos <mroos@linux.ee>
Date: Wed, 3 Nov 2010 11:37:59 +0200 (EET)

> Fix openpromfs compilation by adding a missing semicolon in 
> fs/openpromfs/inode.c openprom_mount().
> 
> Signed-off-by: Meelis Roos <mroos@linux.ee>

I already asked Al Viro (who added this bug and you didn't
CC:) to fix this problem.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c
index ddb1f41..911e61f 100644
--- a/fs/openpromfs/inode.c
+++ b/fs/openpromfs/inode.c
@@ -418,7 +418,7 @@  out_no_root:
 static struct dentry *openprom_mount(struct file_system_type *fs_type,
 	int flags, const char *dev_name, void *data)
 {
-	return mount_single(fs_type, flags, data, openprom_fill_super)
+	return mount_single(fs_type, flags, data, openprom_fill_super);
 }
 
 static struct file_system_type openprom_fs_type = {