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>
This commit is contained in:
John Johansen
2025-05-25 20:15:01 -07:00
parent 16916b17b4
commit 4c0dc425fd
+1 -1
View File
@@ -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 },