chg: cliparse should have atleast same file_max_path_len

This commit is contained in:
iceman1001 2020-06-10 13:31:57 +02:00
parent cb614f3f11
commit 61be7c7c30

View file

@ -40,7 +40,7 @@ typedef struct {
const char *programName;
const char *programHint;
const char *programHelp;
char buf[500];
char buf[1024 + 60];
} CLIParserContext;
int CLIParserInit(CLIParserContext **ctx, const char *vprogramName, const char *vprogramHint, const char *vprogramHelp);
int CLIParserParseString(CLIParserContext *ctx, const char *str, void *vargtable[], size_t vargtableLen, bool allowEmptyExec);