]> sigrok.org Git - libsigrok.git/commitdiff
sr: saleae: Fix typo.
authorUwe Hermann <redacted>
Tue, 7 Feb 2012 22:50:47 +0000 (23:50 +0100)
committerUwe Hermann <redacted>
Tue, 7 Feb 2012 22:56:33 +0000 (23:56 +0100)
hardware/saleae-logic/saleae-logic.c

index 9c1bb3e16171e6b4811854fc7fce5fd3142f0432..ab303306265155437781448c4296134c451ff4a3 100644 (file)
@@ -145,12 +145,12 @@ static int check_conf_profile(libusb_device *dev)
 
                if ((intf_dsc->endpoint[0].bEndpointAddress & 0x8f) !=
                    (1 | LIBUSB_ENDPOINT_OUT))
-                       /* First endpoint should be 1 (outbound). */
+                       /* The first endpoint should be 1 (outbound). */
                        break;
 
                if ((intf_dsc->endpoint[1].bEndpointAddress & 0x8f) !=
                    (2 | LIBUSB_ENDPOINT_IN))
-                       /* First endpoint should be 2 (inbound). */
+                       /* The second endpoint should be 2 (inbound). */
                        break;
 
                /* TODO: The new firmware has 4 endpoints... */