diff --git a/test.cpp b/test.cpp index e9d66c61..640dece5 100644 --- a/test.cpp +++ b/test.cpp @@ -204,7 +204,8 @@ int main(int argc, char *argv[]) if (command == "mt") { MaurerRandomnessTest mt; - FileStore(argv[2]).TransferAllTo(mt); + FileStore fs(argv[2]); + fs.TransferAllTo(mt); cout << "Maurer Test Value: " << mt.GetTestValue() << endl; } else