Commit 4c0dc425 authored by John Johansen's avatar John Johansen
Browse files

apparmor: make debug_values_table static



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

Signed-off-by: default avatarJohn Johansen <john.johansen@canonical.com>
parent 16916b17
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ struct val_table_ent {
	int value;
};

struct val_table_ent debug_values_table[] = {
static struct val_table_ent debug_values_table[] = {
	{ "N", DEBUG_NONE },
	{ "none", DEBUG_NONE },
	{ "n", DEBUG_NONE },