Skip to content

Commit bd08753

Browse files
committed
Fix CI.
1 parent 586d284 commit bd08753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/device/cdc_msc_freertos/src/msc_disk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset, void* buff
193193
if ( lba >= DISK_BLOCK_NUM ) return -1;
194194
// Check for overflow of offset + bufsize
195195
if ( offset + bufsize >= DISK_BLOCK_SIZE ) return -1;
196-
196+
197197
uint8_t const* addr = msc_disk[lba] + offset;
198198
memcpy(buffer, addr, bufsize);
199199

0 commit comments

Comments
 (0)