From ddae9e9aa2cbbfac2ed71d42a4cab71a08dee875 Mon Sep 17 00:00:00 2001 From: mr Date: Sun, 12 Sep 2004 08:53:13 +0000 Subject: Fix compilation error due to wrong set parenthesis. PR: ports/71540 (with fix), ports/71574 Submitted by: Rainer Goellner Approved by: portmgr --- cad/qcad/files/patch-ab | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cad/qcad/files/patch-ab diff --git a/cad/qcad/files/patch-ab b/cad/qcad/files/patch-ab new file mode 100644 index 000000000000..1e2c5d362411 --- /dev/null +++ b/cad/qcad/files/patch-ab @@ -0,0 +1,11 @@ +--- qcadlib/src/engine/rs_graphic.cpp.orig Thu Sep 9 07:31:40 2004 ++++ qcadlib/src/engine/rs_graphic.cpp Thu Sep 9 07:32:03 2004 +@@ -518,7 +518,7 @@ + if (fabs(s.x)>1.0e-6) { + fx = ps.x / s.x; + } +- if (fabs(s.y>1.0e-6)) { ++ if (fabs(s.y)>1.0e-6) { + fy = ps.y / s.y; + } + -- cgit