summarylogtreecommitdiffstats
path: root/drc.diff
diff options
context:
space:
mode:
Diffstat (limited to 'drc.diff')
-rw-r--r--drc.diff55
1 files changed, 0 insertions, 55 deletions
diff --git a/drc.diff b/drc.diff
deleted file mode 100644
index 66e76bf61021..000000000000
--- a/drc.diff
+++ /dev/null
@@ -1,55 +0,0 @@
-diff --git source/glsweep.c source/glsweep.c
-index 342aad6..188e3c1 100644
---- source/glsweep.c
-+++ source/glsweep.c
-@@ -32,9 +32,8 @@
- #include <stdlib.h>
- #include <math.h>
-
--/* Decommentare per abilitare la compilazione in doppia precisione */
--/* Uncomment to enable double precision computation */
--#define UseDouble
-+/* For the UseDouble option */
-+#include <drc.h>
-
- #ifdef UseDouble
- /* Tipo floating point usato per le elaborazioni */
-diff --git source/lsconv.c source/lsconv.c
-index 299fe55..5554f04 100644
---- source/lsconv.c
-+++ source/lsconv.c
-@@ -30,6 +30,7 @@
- #include <stdlib.h>
- #include <math.h>
- #include "fftsg_h.h"
-+#include "drc.h"
-
- /* Output stringhe con sync output e parametro */
- int sputsp(const char * s, const char * p)
-@@ -216,7 +217,7 @@ int main(int argc, char * argv[])
- }
- for(I = 0;I < IS;I++)
- {
-- if (fread(&RF,sizeof(float),1,IOF) < sizeof(float))
-+ if (fread(&RF,sizeof(float),1,IOF) != 1)
- {
- perror("Error while reading the inverse file");
- return 1;
-@@ -244,7 +245,7 @@ int main(int argc, char * argv[])
- Sweep[I] = (DLReal) 0.0;
- for(I = CS - IS,J = 0;J < RS;I++,J++)
- {
-- if (fread(&RF,sizeof(float),1,IOF) < sizeof(float))
-+ if (fread(&RF,sizeof(float),1,IOF) != 1)
- {
- perror("Error while reading the reference file");
- return 1;
-@@ -373,7 +374,7 @@ int main(int argc, char * argv[])
- }
- for(I = 0;I < SS;I++)
- {
-- if (fread(&RF,sizeof(float),1,IOF) < sizeof(float))
-+ if (fread(&RF,sizeof(float),1,IOF) != 1)
- {
- perror("Error while reading the sweep file");
- return 1;