aboutsummaryrefslogtreecommitdiff
path: root/src/TagPool.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-07 10:49:21 +0100
committerMax Kellermann <max@duempel.org>2013-01-07 10:49:21 +0100
commita6ee6be9602f64599b40e01321bd771b17d94f39 (patch)
treedacbac3a4c088fa9621dae49db0a49ffb847b885 /src/TagPool.hxx
parent47911f9544ecd3b028cc044b400536234b17949a (diff)
TagPool: use the Mutex class instead of GStaticMutex
Diffstat (limited to 'src/TagPool.hxx')
-rw-r--r--src/TagPool.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TagPool.hxx b/src/TagPool.hxx
index 170b2dae..5d68a31d 100644
--- a/src/TagPool.hxx
+++ b/src/TagPool.hxx
@@ -21,10 +21,11 @@
#define MPD_TAG_POOL_HXX
#include "tag.h"
+#include "thread/Mutex.hxx"
#include <glib.h>
-extern GStaticMutex tag_pool_lock;
+extern Mutex tag_pool_lock;
struct tag_item;