Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

apparmor: make debug_values_table static

The debug_values_table is only referenced from lib.c so it should
be static.

Signed-off-by: John Johansen <john.johansen@canonical.com>

+1 -1
+1 -1
security/apparmor/lib.c
··· 30 30 int value; 31 31 }; 32 32 33 - struct val_table_ent debug_values_table[] = { 33 + static struct val_table_ent debug_values_table[] = { 34 34 { "N", DEBUG_NONE }, 35 35 { "none", DEBUG_NONE }, 36 36 { "n", DEBUG_NONE },