diff options
Diffstat (limited to 'tools/mid2agb/main.cpp')
-rw-r--r-- | tools/mid2agb/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mid2agb/main.cpp b/tools/mid2agb/main.cpp index c26a7bdf5..9b883fba5 100644 --- a/tools/mid2agb/main.cpp +++ b/tools/mid2agb/main.cpp @@ -63,7 +63,7 @@ bool g_compressionEnabled = true; static std::string StripExtension(std::string s) { - size_t pos = s.find_last_of('.'); + std::size_t pos = s.find_last_of('.'); if (pos > 0 && pos != std::string::npos) { @@ -75,7 +75,7 @@ static std::string StripExtension(std::string s) static std::string GetExtension(std::string s) { - size_t pos = s.find_last_of('.'); + std::size_t pos = s.find_last_of('.'); if (pos > 0 && pos != std::string::npos) { |