summaryrefslogtreecommitdiffstats
path: root/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff')
-rw-r--r--freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff48
1 files changed, 48 insertions, 0 deletions
diff --git a/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff b/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff
new file mode 100644
index 000000000..1d79bc90d
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff
@@ -0,0 +1,48 @@
+commit 3ce1e1ccb8105968b6cb2a506a627f60f50d2148
+Author: Michele Calgaro <michele.calgaro@yahoo.it>
+Date: Wed May 11 22:10:44 2022 +0900
+
+ Fix FTBFS described at issue #2.
+
+ Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
+
+diff --git a/plugins/infowidget/chunkbar.cpp b/plugins/infowidget/chunkbar.cpp
+index 1cd45eb..794bf5a 100644
+--- a/plugins/infowidget/chunkbar.cpp
++++ b/plugins/infowidget/chunkbar.cpp
+@@ -207,7 +207,7 @@ namespace kt
+
+ if (rs.empty())
+ {
+- Range r = {i,i,0};
++ Range r = {(int)i,(int)i,0};
+ rs.append(r);
+ }
+ else
+@@ -219,7 +219,7 @@ namespace kt
+ }
+ else
+ {
+- Range r = {i,i,0};
++ Range r = {(int)i,(int)i,0};
+ rs.append(r);
+ }
+ }
+@@ -256,7 +256,7 @@ namespace kt
+ int fac = int(100*((double)num_dl / (jEnd - jStart)) + 0.5);
+ if (rs.empty())
+ {
+- Range r = {i,i,fac};
++ Range r = {(int)i,(int)i,fac};
+ rs.append(r);
+ }
+ else
+@@ -268,7 +268,7 @@ namespace kt
+ }
+ else
+ {
+- Range r = {i,i,fac};
++ Range r = {(int)i,(int)i,fac};
+ rs.append(r);
+ }
+ }