diff options
author | Max Kellermann <max@duempel.org> | 2009-03-14 14:38:48 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-14 14:38:48 +0100 |
commit | 35a04ccf07bebceb7ae42395491283c021b966eb (patch) | |
tree | 82a91931748db79b5b5857f04a3d6b22d98c9f54 | |
parent | f711198ab33e485113cbe14b162b4c1436d56ab1 (diff) | |
download | mpd-35a04ccf07bebceb7ae42395491283c021b966eb.tar.gz mpd-35a04ccf07bebceb7ae42395491283c021b966eb.tar.xz mpd-35a04ccf07bebceb7ae42395491283c021b966eb.zip |
tag_pool: make "slots" static
The variable is private.
-rw-r--r-- | src/tag_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |