Commit 7e03ad9a authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] binfmt_script.c: make struct script_format static

The patch below makes struct script_format in fs/binfmt_script.c static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2ed67494
......@@ -96,7 +96,7 @@ static int load_script(struct linux_binprm *bprm,struct pt_regs *regs)
return search_binary_handler(bprm,regs);
}
struct linux_binfmt script_format = {
static struct linux_binfmt script_format = {
.module = THIS_MODULE,
.load_binary = load_script,
};
......
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