Merge pull request #173 from JohannesTaelman/master
authortexane <texane@gmail.com>
Tue, 13 Aug 2013 14:05:58 +0000 (07:05 -0700)
committertexane <texane@gmail.com>
Tue, 13 Aug 2013 14:05:58 +0000 (07:05 -0700)
fixed USB VID/PID detection bug

src/stlink-usb.c

index d574584281e3f5668c532b84a75aba33cd81edc1..9895da85573c166209767513ae97ae8d300cfb7a 100644 (file)
@@ -754,7 +754,10 @@ stlink_t* stlink_open_usb(const int verbose) {
         if (devBus && devAddr)
             if ((libusb_get_bus_number(list[cnt])!=devBus) || (libusb_get_device_address(list[cnt])!=devAddr)) continue;
         if (desc.idProduct == USB_STLINK_32L_PID) break;
-        if (desc.idProduct == USB_STLINK_PID) slu->protocoll = 1; break;
+        if (desc.idProduct == USB_STLINK_PID) {
+            slu->protocoll = 1;
+            break;
+        }
     }
     
     if (cnt < 0) {