From 16a5c6179be8efdc7342b648a5a3c3e17114eed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Barna=C5=9B?= Date: Mon, 4 May 2026 17:51:44 +0200 Subject: [PATCH] Fix typo in message about devices found --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index dbd573b..64782e8 100644 --- a/main.cpp +++ b/main.cpp @@ -4076,9 +4076,9 @@ string missing_device_string(bool wasRetry, bool requires_rp2350 = false) { snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found with address %d.", device_name, settings.address); } } else if (settings.bus != -1) { - snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found found on bus %d.", device_name, settings.bus); + snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found on bus %d.", device_name, settings.bus); } else if (!settings.ser.empty()) { - snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found found with serial number %s.", device_name, settings.ser.c_str()); + snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found with serial number %s.", device_name, settings.ser.c_str()); } else { snprintf(buf, buf_len, "accessible %s devices in BOOTSEL mode were found.", device_name); }