1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Resolves various instances of spaces in place of tabs.

This commit is contained in:
Thomas Harte
2018-09-09 20:33:56 -04:00
parent 22a52bdca2
commit fc84ae611e
4 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -179,7 +179,7 @@ void NIB::set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tra
// Lock the file and spool out.
std::lock_guard<std::mutex> lock_guard(file_.get_file_access_mutex());
for(const auto &track: tracks_by_address) {
file_.seek(file_offset(track.first), SEEK_SET);
file_.write(track.second);
file_.seek(file_offset(track.first), SEEK_SET);
file_.write(track.second);
}
}