diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-02-24 03:38:36 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-02-24 03:38:36 +0000 |
| commit | 1d40b8a5ae2e64ed329f66e9da059cde9baf24fc (patch) | |
| tree | 1dc8c263a83789cac1a2a6999d1370438570f0cd /Source/Core/Common/Src/CDUtils.cpp | |
| parent | 3cc5d8ce6f31ffa26f7eb3f8db9de68cca9721e2 (diff) | |
Systematically eliminating compiler warnings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5117 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/CDUtils.cpp')
| -rw-r--r-- | Source/Core/Common/Src/CDUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/CDUtils.cpp b/Source/Core/Common/Src/CDUtils.cpp index 1ab2288f11..e12bbaa335 100644 --- a/Source/Core/Common/Src/CDUtils.cpp +++ b/Source/Core/Common/Src/CDUtils.cpp @@ -373,7 +373,7 @@ std::vector<std::string> cdio_get_devices() { bool cdio_is_cdrom(std::string device) { std::vector<std::string> devices = cdio_get_devices(); bool res = false; - for (int i = 0; i < devices.size(); i++) { + for (unsigned int i = 0; i < devices.size(); i++) { if (strncmp(devices[i].c_str(), device.c_str(), PATH_MAX) == 0) { res = true; break; |
