spiffs: Explicitly indicate unused value
This commit is contained in:
parent
beb3611ca3
commit
d31b31787c
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ const char* TAG = "SPIFFS";
|
||||||
|
|
||||||
void spiffs_api_lock(spiffs *fs)
|
void spiffs_api_lock(spiffs *fs)
|
||||||
{
|
{
|
||||||
xSemaphoreTake(((esp_spiffs_t *)(fs->user_data))->lock, portMAX_DELAY);
|
(void) xSemaphoreTake(((esp_spiffs_t *)(fs->user_data))->lock, portMAX_DELAY);
|
||||||
}
|
}
|
||||||
|
|
||||||
void spiffs_api_unlock(spiffs *fs)
|
void spiffs_api_unlock(spiffs *fs)
|
||||||
|
|
Loading…
Reference in a new issue