mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-05 19:55:56 +01:00
check file is opened correctly in the Lime reader
This commit is contained in:
parent
25d1cadd3b
commit
f871fb0c6d
@ -182,6 +182,11 @@ class GridLimeReader : public BinaryIO {
|
||||
{
|
||||
filename= _filename;
|
||||
File = fopen(filename.c_str(), "r");
|
||||
if (File == nullptr)
|
||||
{
|
||||
std::cerr << "cannot open file '" << filename << "'" << std::endl;
|
||||
abort();
|
||||
}
|
||||
LimeR = limeCreateReader(File);
|
||||
}
|
||||
/////////////////////////////////////////////
|
||||
|
Loading…
x
Reference in New Issue
Block a user