summaryrefslogtreecommitdiff
path: root/package/mpd/patches/patch-src_thread_Id_hxx
blob: 21dd19846857fc1a0c332d8bd0ca07d69c206fab (plain)
1
2
3
4
5
6
7
8
9
10
11
--- mpd-0.18.9.orig/src/thread/Id.hxx	2013-12-11 20:51:53.000000000 +0100
+++ mpd-0.18.9/src/thread/Id.hxx	2014-03-26 09:04:04.000000000 +0100
@@ -84,7 +84,7 @@ public:
 #ifdef WIN32
 		return id == other.id;
 #else
-		return ::pthread_equal(id, other.id);
+		return pthread_equal(id, other.id);
 #endif
 	}