1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #11282 from bergzand/pr/usb/sam0_fix_default

sam0_common: Fix syntax mistake in usbdev driver
This commit is contained in:
Dylan Laduranty 2019-03-26 16:37:36 +01:00 committed by GitHub
commit e83ea659c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -457,7 +457,7 @@ static void _ep_enable(usbdev_ep_t *ep)
case USB_EP_TYPE_INTERRUPT:
type = 0x04;
break;
case default:
default:
/* Must never happen */
assert(false);
}