Skip to content

Commit

Permalink
bug in readreftable guard
Browse files Browse the repository at this point in the history
  • Loading branch information
fradav committed Jun 4, 2020
1 parent 9b7e0fa commit 8c5cc41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/readreftable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ Reftable<MatrixXd> readreftable_scen(string headerpath, string reftablepath, siz


ifstream reftableStream(reftablepath,ios::in|ios::binary);
if (headerStream.fail()){
if (reftableStream.fail()){
cout << "No Reftable, exiting" << endl;
exit(1);
}
Expand Down

0 comments on commit 8c5cc41

Please sign in to comment.