Merge pull request #13 from niXman/patch-1

typo fixed
This commit is contained in:
Beman Dawes
2016-04-04 17:11:42 -04:00

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));
}