diff options
| author | Reinhard Panhuber <[email protected]> | 2020-10-09 21:59:52 +0200 |
|---|---|---|
| committer | Reinhard Panhuber <[email protected]> | 2020-10-09 21:59:52 +0200 |
| commit | a85c4ee11ddb33522fb40937dfa09faea6c9132a (patch) | |
| tree | 57027e0dfd45db1344ce712c136823b866f4ca5a /examples | |
| parent | 14ff7313ee0e40c157bc24b83c25a8939929a450 (diff) | |
Fix unused parameter in audio test.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/device/audio_test/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/audio_test/src/main.c b/examples/device/audio_test/src/main.c index c3c32b533..7f0ce3652 100644 --- a/examples/device/audio_test/src/main.c +++ b/examples/device/audio_test/src/main.c @@ -383,7 +383,7 @@ bool tud_audio_tx_done_pre_load_cb(uint8_t rhport, uint8_t itf, uint8_t ep_in, u bool tud_audio_tx_done_post_load_cb(uint8_t rhport, uint16_t n_bytes_copied, uint8_t itf, uint8_t ep_in, uint8_t cur_alt_setting) { (void) rhport; - (void) rhport; + (void) n_bytes_copied; (void) itf; (void) ep_in; (void) cur_alt_setting; |
