diff options
author | Max Kellermann <max@duempel.org> | 2013-01-07 10:49:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-07 10:49:21 +0100 |
commit | a6ee6be9602f64599b40e01321bd771b17d94f39 (patch) | |
tree | dacbac3a4c088fa9621dae49db0a49ffb847b885 /src/TagPool.hxx | |
parent | 47911f9544ecd3b028cc044b400536234b17949a (diff) | |
download | mpd-a6ee6be9602f64599b40e01321bd771b17d94f39.tar.gz mpd-a6ee6be9602f64599b40e01321bd771b17d94f39.tar.xz mpd-a6ee6be9602f64599b40e01321bd771b17d94f39.zip |
TagPool: use the Mutex class instead of GStaticMutex
Diffstat (limited to '')
-rw-r--r-- | src/TagPool.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TagPool.hxx b/src/TagPool.hxx index 170b2dae4..5d68a31d7 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; |