[svn-r13003]

Cleaned warnings 
h5diff_array.c:804: warning: passing arg 1 of `fabs' as floating rather
than integer due to prototype
introduced double precision arithmetic when possible instead of single
precision
This commit is contained in:
Pedro Vicente Nunes
2006-12-01 10:42:26 -05:00
parent 27c0fb2220
commit 7855afc4b2
4 changed files with 2849 additions and 2910 deletions

View File

@@ -96,7 +96,7 @@ void parse_input(int argc, const char* argv[], const char** fname1, const char**
printf("<-d %s> is not a valid option\n", argv[i+1] );
usage();
}
options->delta = (float) atof(argv[i+1]);
options->delta = atof(argv[i+1]);
i++; /* go to next */
}
else
@@ -114,7 +114,7 @@ void parse_input(int argc, const char* argv[], const char** fname1, const char**
printf("<-p %s> is not a valid option\n", argv[i+1] );
usage();
}
options->percent = (float) atof(argv[i+1]);
options->percent = atof(argv[i+1]);
i++; /* go to next */
}
else