diff options
| author | Reinhard Panhuber <[email protected]> | 2020-06-14 12:57:00 +0200 |
|---|---|---|
| committer | Reinhard Panhuber <[email protected]> | 2020-06-14 12:57:00 +0200 |
| commit | 3012175351fa1f262533527c0444ce9d44917943 (patch) | |
| tree | 69a2751d66b1863ebca22f68a8e1d671b1e20aa3 /src | |
| parent | 48b2e6cf78a3c3a321715938e40166138ed605f5 (diff) | |
Fix alignment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/device/usbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c index 040155d41..f11696e78 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -764,8 +764,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++) { |
