whitespace

This commit is contained in:
Axel Kohlmeyer
2021-10-06 15:57:33 -04:00
parent 7a1cf322e5
commit 4260d31b85

View File

@ -220,7 +220,7 @@ void DynamicalMatrix::openfile(const char *filename)
// if file already opened, return
if (file_opened) return;
fp = nullptr;
if (me == 0) {
if (compressed) {
fp = platform::zip_write(std::string(filename)+".gz");
@ -232,7 +232,7 @@ void DynamicalMatrix::openfile(const char *filename)
}
if (!fp) error->one(FLERR,"Cannot open dynmat file: {}", utils::getsyserror());
}
file_opened = 1;
}