erase compiler complaint, not used var

This commit is contained in:
Hideki Miyazaki 2019-09-09 08:20:42 +09:00
parent 7433b20d43
commit 87d0c70695

View File

@ -150,6 +150,7 @@ int construct_argv()
/* entry point */ /* entry point */
void app_main(void) void app_main(void)
{ {
(void) TAG;
#ifndef NO_CRYPT_BENCHMARK #ifndef NO_CRYPT_BENCHMARK
/* when using atecc608a on esp32-wroom-32se */ /* when using atecc608a on esp32-wroom-32se */
@ -163,8 +164,6 @@ void app_main(void)
return; return;
} }
atmel_set_slot_allocator(my_atmel_alloc, my_atmel_free); atmel_set_slot_allocator(my_atmel_alloc, my_atmel_free);
#else
(void) TAG;
#endif #endif
#endif #endif
wolf_benchmark_task(); wolf_benchmark_task();