Skip to content

Commit 4c0dc42

Browse files
committed
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 <[email protected]>
1 parent 16916b1 commit 4c0dc42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/apparmor/lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct val_table_ent {
3030
int value;
3131
};
3232

33-
struct val_table_ent debug_values_table[] = {
33+
static struct val_table_ent debug_values_table[] = {
3434
{ "N", DEBUG_NONE },
3535
{ "none", DEBUG_NONE },
3636
{ "n", DEBUG_NONE },

0 commit comments

Comments
 (0)