diff --git a/src/DebugToolDrivers/USB/UsbDevice.cpp b/src/DebugToolDrivers/USB/UsbDevice.cpp index 1d3782be..26f2c4c6 100644 --- a/src/DebugToolDrivers/USB/UsbDevice.cpp +++ b/src/DebugToolDrivers/USB/UsbDevice.cpp @@ -27,7 +27,7 @@ namespace Bloom::Usb if (devices.empty()) { throw DeviceInitializationFailure( "Failed to find USB device with matching vendor and product ID. Please examine the debug tool's USB " - "connection, as well as the selected environment's debug tool configuration in bloom.yaml" + "connection, as well as the selected environment's debug tool configuration, in bloom.yaml" ); } diff --git a/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp b/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp index 33f7f516..4a4a04d7 100644 --- a/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp +++ b/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp @@ -38,7 +38,7 @@ namespace Bloom Targets::TargetMemoryBuffer data; - for (auto i = 0; i < readsRequired; i++) { + for (std::uint32_t i = 0; i < readsRequired; i++) { auto dataSegment = targetControllerConsole.readMemory( this->memoryType, this->startAddress + static_cast(readSize * i),