aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc/0001-mplay-Fix-build-with-musl.patch
blob: 48cf7a355c9fe82eefd72fb400181cd7364ccdfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
From e9e9027d7a324e1ce5e0cb06d4eb51847262a09d Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sun, 28 Aug 2022 12:26:52 -0700
Subject: [PATCH] mplay: Fix build with musl

pthread_t is an opaque type, therefore typecast it to avoid warnings on
musl

Fixes
mplay.c:200:12: error: incompatible integer to pointer conversion initializing 'pthread_t' (aka 'struct __pthread *') with an expression of type 'int' [-Wint-conversion]
|         .tid                            = -1
|                                           ^~

Upstream-Status: Submitted [https://sourceforge.net/p/lirc/git/merge-requests/47/]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 plugins/mplay.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/mplay.c b/plugins/mplay.c
index d6d9619..5b9eb4b 100644
--- a/plugins/mplay.c
+++ b/plugins/mplay.c
@@ -197,7 +197,7 @@ static struct {
 	.latest_button			= MPLAY_CODE_ERROR,
 	.fd				= -1,
 	.pipefd				= { -1,	     -1	  },
-	.tid				= -1
+	.tid				= (pthread_t)-1
 };
 
 /**
@@ -788,7 +788,7 @@ int mplayfamily_deinit(void)
 			return 0;
 		}
 		pthread_join(mplayfamily_local_data.tid, NULL);
-		mplayfamily_local_data.tid = -1;
+		mplayfamily_local_data.tid = (pthread_t)-1;
 	}
 	if (mplayfamily_local_data.pipefd[0] != -1) {
 		close(mplayfamily_local_data.pipefd[0]);
-- 
2.37.2