Use varargs version of Error:all() and Error::one() where applicable
This commit is contained in:
@ -231,8 +231,8 @@ void WriteRestart::write(std::string file)
|
||||
|
||||
fp = fopen(base.c_str(),"wb");
|
||||
if (fp == nullptr)
|
||||
error->one(FLERR, fmt::format("Cannot open restart file {}: {}",
|
||||
base, utils::getsyserror()));
|
||||
error->one(FLERR, "Cannot open restart file {}: {}",
|
||||
base, utils::getsyserror());
|
||||
}
|
||||
|
||||
// proc 0 writes magic string, endian flag, numeric version
|
||||
@ -294,8 +294,8 @@ void WriteRestart::write(std::string file)
|
||||
if (filewriter) {
|
||||
fp = fopen(multiname.c_str(),"wb");
|
||||
if (fp == nullptr)
|
||||
error->one(FLERR, fmt::format("Cannot open restart file {}: {}",
|
||||
multiname, utils::getsyserror()));
|
||||
error->one(FLERR, "Cannot open restart file {}: {}",
|
||||
multiname, utils::getsyserror());
|
||||
write_int(PROCSPERFILE,nclusterprocs);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user