Changed outpuf file oflags for pifm.c and piam.c so that it can actually write to the output files.

This commit is contained in:
Ben 2016-01-05 00:49:43 -05:00
parent a80e10904d
commit fe591b4c85
2 changed files with 40 additions and 40 deletions

View File

@ -74,7 +74,7 @@ int main(int argc, char **argv) {
return 1 ;
}
FileFreqTiming = open(outfilename, O_RDONLY);
FileFreqTiming = open(outfilename, O_RWONLY);
/** **/

View File

@ -74,7 +74,7 @@ int main(int argc, char **argv) {
return 1 ;
}
FileFreqTiming = open(outfilename, O_RDONLY);
FileFreqTiming = open(outfilename, O_RWONLY);
/** **/