diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-12-12 04:25:32 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-12-12 04:25:32 +0000 |
commit | aad9609aa9d6fff1fc47cda02e2069f0710b24ce (patch) | |
tree | 8c1f6078146fc2810d7e40f07ac59dcc21d28aa0 /cad/qmls/files/patch-quinegroup.cpp | |
parent | Fix build on -current (diff) |
Fix build for -current
Submitted by: bento
Diffstat (limited to 'cad/qmls/files/patch-quinegroup.cpp')
-rw-r--r-- | cad/qmls/files/patch-quinegroup.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cad/qmls/files/patch-quinegroup.cpp b/cad/qmls/files/patch-quinegroup.cpp new file mode 100644 index 000000000000..2d815d394995 --- /dev/null +++ b/cad/qmls/files/patch-quinegroup.cpp @@ -0,0 +1,11 @@ +--- qmls/quinegroup.cpp.orig Wed Dec 11 21:42:49 2002 ++++ qmls/quinegroup.cpp Wed Dec 11 21:44:24 2002 +@@ -111,7 +111,7 @@ + unsigned int headData = head->GetData(); + for (i=0; i<numDiffBits; i++) + { +- unsigned int numToSkip = (unsigned int)pow(2,i); ++ unsigned int numToSkip = (unsigned int)pow(2.0,(int)i); + diffBits[i] = ValueAt(numToSkip) - headData; + } + |