From a6f52e839f4ed5fd0ece77ecfd9dcc5076d2daab Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 19 Apr 2019 01:14:04 +0200 Subject: [PATCH] fix bug --- client/cmdhf15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdhf15.c b/client/cmdhf15.c index 58fe81945..f1a49eb9b 100644 --- a/client/cmdhf15.c +++ b/client/cmdhf15.c @@ -1314,7 +1314,7 @@ static command_t CommandTable[] = { static int CmdHF15Help(const char *Cmd) { (void)Cmd; // Cmd is not used so far - CmdsHelp(CommandTable15); + CmdsHelp(CommandTable); return 0; }