aboutsummaryrefslogtreecommitdiff
path: root/srcpkgs/pchar/patches/fix-build.patch
blob: 655aa82c5cf8be4d74935970a8ab04bb31702c4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/ResultTable.cc	2018-01-10 19:18:31.278796587 +0100
+++ b/ResultTable.cc	2018-01-10 19:18:18.193831083 +0100
@@ -909,8 +909,8 @@ void ResultTable::lmsint(double &a, doub
 	l = 0;
 	for (i = 0; i < columns; i++) {
 	    if (partialmins[i] != timeoutresult) {
-		residuals[l] = abs(partialmins[i] - 
-				   ((currentslope * 
+		residuals[l] = abs((long int)partialmins[i] - 
+				   (long int)((currentslope * 
 				     column2size(i) /
 				     slopescale) +
 				    currentintercept));
@@ -930,7 +930,7 @@ void ResultTable::lmsint(double &a, doub
 	l = 0;
 	for (i = 0; i < columns; i++) {
 	    if (partialmins[i] != timeoutresult) {
-		ys[l] = abs(partialmins[i] - mediany);
+		ys[l] = abs((long int)partialmins[i] - (long int)mediany);
 		l++;
 	    }
 	}