summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test.cpp b/test.cpp
index e9d66c6..640dece 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