SOURCES: qucs-sqrt.patch (NEW) - needed for gcc warning about sqrt(int)

agaran agaran at pld-linux.org
Sun Jun 29 20:55:49 CEST 2008


Author: agaran                       Date: Sun Jun 29 18:55:49 2008 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- needed for gcc warning about sqrt(int)

---- Files affected:
SOURCES:
   qucs-sqrt.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/qucs-sqrt.patch
diff -u /dev/null SOURCES/qucs-sqrt.patch:1.1
--- /dev/null	Sun Jun 29 20:55:49 2008
+++ SOURCES/qucs-sqrt.patch	Sun Jun 29 20:55:43 2008
@@ -0,0 +1,12 @@
+diff -Nur qucs-0.0.14.ori/qucs-core/src/check_touchstone.cpp qucs-0.0.14/qucs-core/src/check_touchstone.cpp
+--- qucs-0.0.14.ori/qucs-core/src/check_touchstone.cpp	2008-01-10 20:00:00.000000000 +0000
++++ qucs-0.0.14/qucs-core/src/check_touchstone.cpp	2008-06-29 18:42:47.365258650 +0000
+@@ -101,7 +101,7 @@
+     even = 1;
+   }
+   /* first line determines the number of expected ports */
+-  touchstone_options.ports = (int) sqrt ((size - 1) / 2);
++  touchstone_options.ports = (int) sqrt ((size - 1.0) / 2.0);
+ 
+   /* check first frequency value */
+   if (f < 0.0) {
================================================================


More information about the pld-cvs-commit mailing list