mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-05 21:59:45 +00:00
esp32: fix warning in btstack_tlv_esp32_store_tag
This commit is contained in:
parent
8cdc9940ad
commit
41b3c0f43e
@ -92,7 +92,7 @@ static int btstack_tlv_esp32_get_tag(void * context, uint32_t tag, uint8_t * buf
|
||||
* @param data_size
|
||||
*/
|
||||
static int btstack_tlv_esp32_store_tag(void * context, uint32_t tag, const uint8_t * data, uint32_t data_size){
|
||||
if (!nvs_active) return;
|
||||
if (!nvs_active) return 0;
|
||||
char key_buffer[9];
|
||||
key_for_tag(tag, key_buffer);
|
||||
log_info("store tag %s", key_buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user