mirror of
https://github.com/RPCS3/libusb.git
synced 2026-01-31 01:25:19 +01:00
Removed accidental double semi colons at end of line
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
This commit is contained in:
committed by
Chris Dickens
parent
7338c2d347
commit
c1d8c8d654
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define LIBUSB_NANO 11237
|
||||
#define LIBUSB_NANO 11238
|
||||
|
||||
Reference in New Issue
Block a user