about summary refs log tree commit diff
path: root/pkgs/applications/editors/ht/gcc7.patch
blob: a90deaac698dd38ad06fb87fc0f0de406fb4df61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- ht-2.1.0.org/htapp.cc	2014-09-14 16:55:26.000000000 +0100
+++ ht-2.1.0/htapp.cc	2018-03-10 12:48:07.158533800 +0000
@@ -3023,7 +3023,7 @@
 {
 	uint a = 2;
 	uint b = u/a;
-	while (abs(a - b) > 1) {
+	while (abs((int)(a - b)) > 1) {
 		a = (a+b)/2;
 		b = u/a;
         }