workaround for GCC

pull/2/head
weidai 2003-04-26 04:56:38 +00:00
parent b68a0ff84d
commit 86f5140826
1 changed files with 2 additions and 1 deletions

View File

@ -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