aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorChris Wright <chrisw@osdl.org>2005-01-07 22:32:50 -0800
committerLinus Torvalds <torvalds@evo.osdl.org>2005-01-07 22:32:50 -0800
commit64ccc61d7e5bc4078907ea4b881dab35a6f23b82 (patch)
tree161cc2d652ffc2c790a4e60ecf93f26bf1acb022 /fs
parent15694162c1b6d9bf4c8bd1b35d6a6a583c07dd95 (diff)
downloadhistory-64ccc61d7e5bc4078907ea4b881dab35a6f23b82.tar.gz
[PATCH] binfmt_script.c: make em86_format static
This patch by Chris Wright <chrisw@osdl.org> makes the needlessly global struct em86_format static. Signed-off-by: Chris Wright <chrisw@osdl.org> Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/binfmt_em86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/binfmt_em86.c b/fs/binfmt_em86.c
index a7f2299cf1f2dd..1f2d1ad6331943 100644
--- a/fs/binfmt_em86.c
+++ b/fs/binfmt_em86.c
@@ -95,7 +95,7 @@ static int load_em86(struct linux_binprm *bprm,struct pt_regs *regs)
return search_binary_handler(bprm, regs);
}
-struct linux_binfmt em86_format = {
+static struct linux_binfmt em86_format = {
.module = THIS_MODULE,
.load_binary = load_em86,
};