Skip to content

Commit

Permalink
ENGINES: Remove C99 printf specifier for size_t
Browse files Browse the repository at this point in the history
It's not necessarily available everywhere, unfortunately.
  • Loading branch information
DrMcCoy committed Mar 2, 2019
1 parent 8174026 commit 848928a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engines/aurora/pathfinding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ void Pathfinding::getVerticesTunnel(std::vector<uint32> &facePath, std::vector<g
}
}
if (tunnel.size() != tunnelLeftRight.size()) {
warning("Possible error in tunnel parity (base tunnel size %zu and left/right tunnel size %zu",
tunnel.size(), tunnelLeftRight.size());
warning("Possible error in tunnel parity (base tunnel size %u and left/right tunnel size %u",
(uint) tunnel.size(), (uint) tunnelLeftRight.size());
}
}

Expand Down

0 comments on commit 848928a

Please sign in to comment.