From 688e8db9048a115cf73231c5eebc411c58285e87 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Mon, 15 Oct 2018 19:30:58 +0100 Subject: [PATCH] BTReal: Correct comparison of integers of different signs --- Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp index 1ca10ef70d..becd2032c8 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp @@ -363,7 +363,7 @@ void BluetoothReal::WaitForHCICommandComplete(const u16 opcode) { const int ret = libusb_interrupt_transfer(m_handle, HCI_EVENT, buffer.data(), static_cast(buffer.size()), &actual_length, 20); - if (ret != 0 || actual_length < sizeof(packet)) + if (ret != 0 || actual_length < static_cast(sizeof(packet))) continue; std::memcpy(&packet, buffer.data(), sizeof(packet)); if (packet.EventType == HCI_EVENT_COMMAND_COMPL && packet.Opcode == opcode)