Fix linter error in session.c command array

This commit is contained in:
Dmitriy Alekseev 2025-09-08 19:30:12 +02:00 committed by GitHub
parent b82da5c2e4
commit a3373d14b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,8 +98,7 @@ static struct {
{CMD17, sizeof(CMD17) - 1, COMMAND_INSTREAM, 0, 0, 1},
{CMD19, sizeof(CMD19) - 1, COMMAND_DETSTATSCLEAR, 0, 1, 1},
{CMD20, sizeof(CMD20) - 1, COMMAND_DETSTATS, 0, 1, 1},
{CMD21, sizeof(CMD21) - 1, COMMAND_ALLMATCHSCAN, 1, 0, 1}
};
{CMD21, sizeof(CMD21) - 1, COMMAND_ALLMATCHSCAN, 1, 0, 1}};
enum commands parse_command(const char *cmd, const char **argument, int oldstyle)
{