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-02-17 01:50:36 -08:00
parent 16916b17b4
commit 4c0dc425fd

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 },