From: Jeremy Kerr Date: Mon, 7 Jan 2008 10:49:40 +0000 (+1100) Subject: Make kboot_parser global options array static X-Git-Tag: v1.0.0~966 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=a57e4ef92b8e590643a325d309511306c5b941a9;ds=sidebyside Make kboot_parser global options array static Signed-off-by: Jeremy Kerr --- diff --git a/devices/kboot-parser.c b/devices/kboot-parser.c index 9388981..df2e762 100644 --- a/devices/kboot-parser.c +++ b/devices/kboot-parser.c @@ -82,7 +82,7 @@ struct global_option { }; -struct global_option global_options[] = { +static struct global_option global_options[] = { { .name = "root" }, { .name = "initrd" }, { .name = "video" },