typo fixed

This commit is contained in:
niXman
2015-04-16 14:18:59 +03:00
parent bf0dec92d0
commit 55714f0d0a

View File

@ -44,7 +44,7 @@ int main()
for (auto &out_rec : recs) // write each record
{
out_rec.balance = boost::endian::native_to_big(rec.balance); // reverse if needed
out_rec.balance = boost::endian::native_to_big(out_rec.balance); // reverse if needed
out.write((const char*)&out_rec, sizeof(out_rec));
}