blob: f40b7f144d0807096bef75a8a88ac1f1d9e8c772 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 85a30903ea3ba4232379bbbcb54960307d5a2da0 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 2 Sep 2022 18:49:03 -0700
4Subject: [PATCH] spacedream: Add typecast to pthread_t in assignment
5
6render_loop_thread is of type pthread_t, therefore -1 which is int can
7not be assigned to it. Do the needed typecast conversion
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 src/spacedream/main.c | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/src/spacedream/main.c b/src/spacedream/main.c
16index 430800f..8e1887c 100644
17--- a/src/spacedream/main.c
18+++ b/src/spacedream/main.c
19@@ -205,7 +205,7 @@ void unload_stars()
20 int main( int argc, char *argv[] )
21 {
22 int quit = 0;
23- pthread_t render_loop_thread = -1;
24+ pthread_t render_loop_thread = (pthread_t)-1;
25
26 IDirectFBSurface *primary;
27 IDirectFBEventBuffer *buffer;
28@@ -344,7 +344,7 @@ int main( int argc, char *argv[] )
29 pthread_cancel( render_loop_thread );
30 pthread_mutex_unlock( &render_start );
31 pthread_join( render_loop_thread, NULL );
32- render_loop_thread = -1;
33+ render_loop_thread = (pthread_t)-1;
34
35
36 unload_stars();
37--
382.37.3
39