diff options
| author | Reinhard Panhuber <[email protected]> | 2021-02-23 19:52:31 +0100 |
|---|---|---|
| committer | Reinhard Panhuber <[email protected]> | 2021-02-23 19:52:31 +0100 |
| commit | 387bf1478efb89b5df12801dd904f93c374649b1 (patch) | |
| tree | c010fe08a4a8b6ae55a793cbbba1d2e6e8723454 /src | |
| parent | c76e04f83584c55719a178b8308b3b2d0141b064 (diff) | |
Fix missing , in tusb_fifo.h
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/tusb_fifo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_fifo.h b/src/common/tusb_fifo.h index 8e1c015ec..8cc448db0 100644 --- a/src/common/tusb_fifo.h +++ b/src/common/tusb_fifo.h @@ -98,7 +98,7 @@ typedef struct .item_size = sizeof(_type), \ .overwritable = _overwritable, \ .max_pointer_idx = 2*(_depth)-1, \ - .non_used_index_space = UINT16_MAX - (2*(_depth)-1) \ + .non_used_index_space = UINT16_MAX - (2*(_depth)-1), \ .wr_mode = TU_FIFO_COPY_INC, \ .rd_mode = TU_FIFO_COPY_INC, \ } |
