lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1406035940-15937-1-git-send-email-eu@opreamatei.ro> Date: Tue, 22 Jul 2014 09:32:20 -0400 From: Matei Oprea <eu@...eamatei.ro> To: akpm@...ux-foundation.org Cc: hpa@...or.com, linux-kernel@...r.kernel.org, Matei Oprea <eu@...eamatei.ro>, ROSEdu Kernel Community <firefly@...ts.rosedu.org> Subject: [PATCH] staging: init: main: fix sparse warning Fix sparse warning "should it be static" Signed-off-by: Matei Oprea <eu@...eamatei.ro> Cc: ROSEdu Kernel Community <firefly@...ts.rosedu.org> --- init/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init/main.c b/init/main.c index e8ae1fe..25cc270 100644 --- a/init/main.c +++ b/init/main.c @@ -160,7 +160,8 @@ static int __init set_reset_devices(char *str) __setup("reset_devices", set_reset_devices); static const char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, }; -const char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, }; +static const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", + "TERM=linux", NULL, }; static const char *panic_later, *panic_param; extern const struct obs_kernel_param __setup_start[], __setup_end[]; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists