Fix 32-bit compilation

This commit is contained in:
Thulinma 2022-06-24 23:47:47 +02:00
parent 9ba92823bb
commit 1c6a483e49
2 changed files with 2 additions and 2 deletions

View file

@ -875,7 +875,7 @@ namespace SDP{
tConv.clear();
size_t trackID;
for (std::map<long unsigned int, Track>::iterator it = tracks.begin(); it != tracks.end(); it++) {
for (std::map<uint64_t, Track>::iterator it = tracks.begin(); it != tracks.end(); it++) {
trackID = myMeta->getID(it->first);
INFO_MSG("Removing track %zu:%s", it->first, myMeta->getTrackIdentifier(it->first).c_str());
if (trackID == INVALID_TRACK_ID){