Fix comma instead of semicolon

This commit is contained in:
Jean-Michel Picod 2025-06-27 12:04:27 +02:00
parent 3625ee318a
commit 6c402791f1

View file

@ -3498,8 +3498,8 @@ static int CmdHF15Wipe(const char *Cmd) {
);
void *argtable[6 + 3] = {0};
uint8_t arglen = arg_add_default(argtable);
argtable[arglen++] = arg_int0(NULL, "bs", "<dec>", "block size (def 4)"),
argtable[arglen++] = arg_lit0("v", "verbose", "verbose output");
argtable[arglen++] = arg_int0(NULL, "bs", "<dec>", "block size (def 4)");
argtable[arglen++] = arg_lit0("v", "verbose", "verbose output");
argtable[arglen++] = arg_param_end;
CLIExecWithReturn(ctx, Cmd, argtable, true);