From 1ea4a698440cd0b03a8c551884d57bb6b00d8ef7 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 7 Aug 2011 23:35:50 +0200 Subject: [PATCH] wma: Make log2_tab static. This table is only used in wma_common.c. --- wma_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wma_common.c b/wma_common.c index 137d288d..1dde8350 100644 --- a/wma_common.c +++ b/wma_common.c @@ -116,7 +116,7 @@ int read_asf_header(const char *buf, int loaded, struct asf_header_info *ahi) return 1; } -const uint8_t log2_tab[256] = { +static const uint8_t log2_tab[256] = { 0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, -- 2.30.2