summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRocky04 <[email protected]>2023-09-14 18:50:13 +0000
committerRocky04 <[email protected]>2023-09-14 18:50:13 +0000
commit288f24b294a96f8edc12943d21278020e3e398e3 (patch)
tree8542bc374a7e68d63fe9c49fbb112527d66237b2 /src
parent997c29ba0517604859a13aa73a8a80341d549898 (diff)
Missing semicolon
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 60cd3167d..83d09a359 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -275,9 +275,9 @@ typedef struct
{
uint8_t count : 7;
uint8_t cb_en : 1;
- }
+ };
uint8_t value;
- }
+ };
} usbd_sof_t;
tu_static usbd_sof_t _usbd_sof = { .value = 0 };