app: fix menu compile error

This commit is contained in:
King Kévin 2022-08-11 15:37:42 +02:00
parent 485fcd186b
commit 5c78aa498e
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ static void command_help(void* argument)
static void process_command(char* str)
{
// ensure actions are available
if (NULL == menu_commands || 0 == LENGTH(menu_commands)) {
if (0 == LENGTH(menu_commands)) {
return;
}
// don't handle empty lines