summaryrefslogtreecommitdiff
path: root/package/mpd/patches/patch-src_thread_Id_hxx
blob: dabee4007d7fffe8b7e7c74af16707d48f589c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- mpd-0.18.5.orig/src/thread/Id.hxx	2013-11-18 23:50:46.000000000 +0100
+++ mpd-0.18.5/src/thread/Id.hxx	2013-11-29 20:50:36.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
 	}