Skip to content

Commit

Permalink
Fix warning in StemInfoImporter
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Jun 9, 2024
1 parent 272fb16 commit 8a00cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/track/steminfoimporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ uint32_t seekTillAtom(QIODevice* reader,
const QStringList& path,
uint32_t boxSize = 0,
uint32_t pathIdx = 0) {
if (path.size() == pathIdx) {
if (static_cast<uint32_t>(path.size()) == pathIdx) {
return boxSize;
}

Expand Down

0 comments on commit 8a00cc0

Please sign in to comment.