Removed accidental double semi colons at end of line

Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
This commit is contained in:
Sean McBride
2017-12-27 23:35:42 -05:00
committed by Chris Dickens
parent 7338c2d347
commit c1d8c8d654
3 changed files with 3 additions and 3 deletions

View File

@@ -333,7 +333,7 @@ static int parse_interface(libusb_context *ctx,
goto err;
if (r == 0) {
ifp->bNumEndpoints = (uint8_t)i;
break;;
break;
}
buffer += r;

View File

@@ -314,7 +314,7 @@ static void darwin_devices_attached (void *ptr, io_iterator_t add_devices) {
while ((service = IOIteratorNext(add_devices))) {
/* add this device to each active context's device list */
list_for_each_entry(ctx, &active_contexts_list, list, struct libusb_context) {
process_new_device (ctx, service);;
process_new_device (ctx, service);
}
IOObjectRelease(service);

View File

@@ -1 +1 @@
#define LIBUSB_NANO 11237
#define LIBUSB_NANO 11238