Fix braino.

This commit is contained in:
Bartosz Taudul 2020-03-25 22:50:13 +01:00
parent 3e134cdce5
commit 7ac03be43b

View File

@ -6674,7 +6674,7 @@ void Worker::Write( FileWrite& f )
{
f.Write( &v.first, sizeof( v.first ) );
f.Write( &v.second.len, sizeof( v.second.len ) );
f.Write( &v.second.data, v.second.len );
f.Write( v.second.data, v.second.len );
}
}