aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/octave-forge-image/files/patch-bwdist.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/math/octave-forge-image/files/patch-bwdist.cc b/math/octave-forge-image/files/patch-bwdist.cc
new file mode 100644
index 000000000000..13ac487ddbf1
--- /dev/null
+++ b/math/octave-forge-image/files/patch-bwdist.cc
@@ -0,0 +1,11 @@
+--- bwdist.cc-orig 2014-03-03 03:07:22.000000000 +0000
++++ bwdist.cc 2014-03-03 03:07:36.000000000 +0000
+@@ -530,7 +530,7 @@
+ // Compute optional 'index to closest object pixel', only if requested
+ if (nargout > 1)
+ {
+- if (numel >= pow (2, 32))
++ if (numel >= pow (2., 32))
+ retval(1) = calc_index<uint64NDArray> (bw, xdist, ydist);
+ else
+ retval(1) = calc_index<uint32NDArray> (bw, xdist, ydist);