diff options
Diffstat (limited to 'opencl')
-rw-r--r-- | opencl/source/opencl_device.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opencl/source/opencl_device.cxx b/opencl/source/opencl_device.cxx index c4de9284c8df..7cb34fe60410 100644 --- a/opencl/source/opencl_device.cxx +++ b/opencl/source/opencl_device.cxx @@ -410,7 +410,7 @@ ds_status pickBestDevice(std::unique_ptr<ds_profile> const & profile, int& rBest int matchDevice(std::unique_ptr<ds_profile> const & profile, char* deviceName) { int deviceMatch = -1; - for (unsigned int d = 0; d < profile->devices.size() - 1; d++) + for (size_t d = 0; d < profile->devices.size() - 1; d++) { if (profile->devices[d].sDeviceName.indexOf(deviceName) != -1) deviceMatch = d; |