audio_device: Fix audio_rx_done_type_I_pcm_ff_cb prototype

Function prototype did not have return type specified by mistake.
This commit is contained in:
Jerzy Kasenberg 2020-09-11 13:16:41 +02:00
parent e67fc808aa
commit 66b091282f
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ CFG_TUSB_MEM_SECTION audiod_interface_t _audiod_itf[CFG_TUD_AUDIO];
extern const uint16_t tud_audio_desc_lengths[]; extern const uint16_t tud_audio_desc_lengths[];
#if CFG_TUD_AUDIO_EPSIZE_OUT #if CFG_TUD_AUDIO_EPSIZE_OUT
static audio_rx_done_type_I_pcm_ff_cb(uint8_t rhport, audiod_interface_t* audio, uint8_t const* buffer, uint32_t bufsize); static bool audio_rx_done_type_I_pcm_ff_cb(uint8_t rhport, audiod_interface_t* audio, uint8_t * buffer, uint16_t bufsize);
#endif #endif
#if CFG_TUD_AUDIO_EPSIZE_IN #if CFG_TUD_AUDIO_EPSIZE_IN