summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReinhard Panhuber <[email protected]>2020-06-14 12:55:52 +0200
committerReinhard Panhuber <[email protected]>2020-06-14 12:55:52 +0200
commit862d1667f0c7e94af29f92d575a7d14dbe126a66 (patch)
tree65198e63a44b2b644073a2756c83374cf9093628 /src
parent930817221d7531b3b47fb71d296947346cab5d8b (diff)
Fix alignment.
Diffstat (limited to 'src')
-rw-r--r--src/device/usbd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c
index 6e2e5635a..ff127a3c1 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -777,8 +777,8 @@ static bool process_set_config(uint8_t rhport, uint8_t cfg_num)
if (desc_itf_assoc)
{
// IAD's first interface number and class/subclass/protocol should match with opened interface
- TU_ASSERT(desc_itf_assoc->bFirstInterface == desc_itf->bInterfaceNumber &&
- desc_itf_assoc->bFunctionClass == desc_itf->bInterfaceClass);
+ TU_ASSERT(desc_itf_assoc->bFirstInterface == desc_itf->bInterfaceNumber &&
+ desc_itf_assoc->bFunctionClass == desc_itf->bInterfaceClass);
for(uint8_t i=1; i<desc_itf_assoc->bInterfaceCount; i++)
{