This commit is contained in:
Axel Kohlmeyer
2021-01-29 09:09:36 -05:00
parent 4f8b81385b
commit 083c098171
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ void DumpNetCDF::openfile()
// Fixme! Perform checks if dimensions and variables conform with
// data structure standard.
if (not utils::file_is_readable(filecurrent))
error->all(FLERR, fmt::format("cannot append to non-existant file {}",
error->all(FLERR, fmt::format("cannot append to non-existent file {}",
filecurrent));
if (singlefile_opened) return;

View File

@ -284,7 +284,7 @@ void DumpNetCDFMPIIO::openfile()
// Fixme! Perform checks if dimensions and variables conform with
// data structure standard.
if (not utils::file_is_readable(filecurrent))
error->all(FLERR, fmt::format("cannot append to non-existant file {}",
error->all(FLERR, fmt::format("cannot append to non-existent file {}",
filecurrent));
MPI_Offset index[NC_MAX_VAR_DIMS], count[NC_MAX_VAR_DIMS];