From 175312423c60484039de339b0df3e52bcd36818f Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Sun, 27 Nov 2022 09:51:31 +0100 Subject: [PATCH] src/libusb_ll: typo (ft2232RL -> ft232RL). Fix #276 --- src/libusb_ll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libusb_ll.cpp b/src/libusb_ll.cpp index 85951df..1b3a453 100644 --- a/src/libusb_ll.cpp +++ b/src/libusb_ll.cpp @@ -69,7 +69,7 @@ bool libusb_ll::scan() else if (desc.idProduct == 0x6011) snprintf(probe_type, 256, "ft4232"); else if (desc.idProduct == 0x6001) - snprintf(probe_type, 256, "ft2232RL"); + snprintf(probe_type, 256, "ft232RL"); else if (desc.idProduct == 0x6014) snprintf(probe_type, 256, "ft232H"); else if (desc.idProduct == 0x6015)