From 53c10f83c35b3f3376529632f198e32e6afb09f4 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 2 Jan 2015 01:47:29 +0000 Subject: [PATCH 1/1] blob.c: Make table descriptions static. These descriptions are only used in blob.c. --- blob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blob.c b/blob.c index 7aedf59b..0092bea3 100644 --- a/blob.c +++ b/blob.c @@ -66,7 +66,7 @@ static struct osl_column_description blob_cols[] = { /** Define an osl table description for a blob table. */ #define DEFINE_BLOB_TABLE_DESC(table_name) \ - struct osl_table_description table_name ## _table_desc = { \ + static struct osl_table_description table_name ## _table_desc = { \ .name = #table_name, \ .num_columns = NUM_BLOB_COLUMNS, \ .flags = OSL_LARGE_TABLE, \ -- 2.39.2