diff options
| author | hathach <[email protected]> | 2018-12-03 16:38:29 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-12-03 16:38:29 +0700 |
| commit | f898f8f7a4f9862e75f32a52efa6b3da72c853c6 (patch) | |
| tree | 12e4bb645a94606307e5a08bac1d313daeabec1f /examples/device/cdc_msc_hid/src | |
| parent | ea37c96d159a198ffb2dc8cf91660920c0a1357a (diff) | |
move lpc_chip_13xx files
Diffstat (limited to 'examples/device/cdc_msc_hid/src')
| -rw-r--r-- | examples/device/cdc_msc_hid/src/msc_disk_ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/cdc_msc_hid/src/msc_disk_ram.c b/examples/device/cdc_msc_hid/src/msc_disk_ram.c index 2293ec0c9..477f8ed17 100644 --- a/examples/device/cdc_msc_hid/src/msc_disk_ram.c +++ b/examples/device/cdc_msc_hid/src/msc_disk_ram.c @@ -108,7 +108,7 @@ int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset, void* buff { (void) lun; - uint8_t* addr = msc_disk[lba] + offset; + uint8_t const* addr = msc_disk[lba] + offset; memcpy(buffer, addr, bufsize); return bufsize; |
