Skip to content
Snippets Groups Projects
Commit 7eee5967 authored by Alexander Ivanov's avatar Alexander Ivanov
Browse files

Fixed a bug using close() instead of fclose().

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@3398 6dcd42c9-f523-4c6d-aada-af552506706e
parent 4ea30b2d
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@ int fmReadCoeffFile(fmReadCoeff *fmc, int n, unsigned long gps) {
if (fgets(buf, 128, f)) {
t = atol(buf);
}
close(f);
fclose(f);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment