From 6a3fc713978a0c1c9290a4afd08b47886b49b635 Mon Sep 17 00:00:00 2001 From: Wim Date: Sat, 13 Aug 2022 16:14:26 +0200 Subject: Update dependencies and go1.18 (#1873) * Update dependencies and go1.18 * Exclude unnecessary linters and update build to go1.18 --- vendor/modernc.org/libc/pthread.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/modernc.org/libc/pthread.go') diff --git a/vendor/modernc.org/libc/pthread.go b/vendor/modernc.org/libc/pthread.go index 67b32ac0..565086ec 100644 --- a/vendor/modernc.org/libc/pthread.go +++ b/vendor/modernc.org/libc/pthread.go @@ -527,7 +527,7 @@ func Xpthread_detach(t *TLS, thread pthread.Pthread_t) int32 { // int pthread_equal(pthread_t t1, pthread_t t2); func Xpthread_equal(t *TLS, t1, t2 pthread.Pthread_t) int32 { - return Bool32(t1 == t1) + return Bool32(t1 == t2) } // void pthread_exit(void *value_ptr); -- cgit v1.2.3