From 35a04ccf07bebceb7ae42395491283c021b966eb Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 14 Mar 2009 14:38:48 +0100 Subject: [PATCH] tag_pool: make "slots" static The variable is private. --- src/tag_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag_pool.c b/src/tag_pool.c index 876a03d82..7224db725 100644 --- a/src/tag_pool.c +++ b/src/tag_pool.c @@ -31,7 +31,7 @@ struct slot { struct tag_item item; } mpd_packed; -struct slot *slots[NUM_SLOTS]; +static struct slot *slots[NUM_SLOTS]; static inline unsigned calc_hash_n(enum tag_type type, const char *p, size_t length)