summaryrefslogtreecommitdiffstats
path: root/packages/gnuchess/files/fix_cast_error_and_gnuchess_exec.patch
blob: 8dba103dc34132500a12c4df38d0f442d674e4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff -Naur fltk-chess.orig/fltk-chess.cxx fltk-chess/fltk-chess.cxx
--- fltk-chess.orig/fltk-chess.cxx	2005-08-25 01:42:28.000000000 +0400
+++ fltk-chess/fltk-chess.cxx	2008-05-17 19:26:57.000000000 +0400
@@ -705,8 +705,8 @@
 
 void cb_P(Fl_Widget * ob, void *p)
 {
-
-    changeP = (char) p;
+    int temp_p = (int) p;
+    changeP = (char) temp_p;
 }
 
 
@@ -881,7 +881,7 @@
 	// close(fdFrom[0]); 
 	// close(fdFrom[1]);
 
-	execl("./gnuchess", NULL);
+	execl("/bin/sh", "/bin/sh", "-c", "exec gnuchess", NULL);
 
     } else {