From: Uwe Hermann Date: Tue, 7 Feb 2012 22:50:47 +0000 (+0100) Subject: sr: saleae: Fix typo. X-Git-Tag: libsigrok-0.1.0~144 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=d38cd6c1f6f3f23b2f659be2d189f56c7592b805;p=libsigrok.git sr: saleae: Fix typo. --- diff --git a/hardware/saleae-logic/saleae-logic.c b/hardware/saleae-logic/saleae-logic.c index 9c1bb3e1..ab303306 100644 --- a/hardware/saleae-logic/saleae-logic.c +++ b/hardware/saleae-logic/saleae-logic.c @@ -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... */