mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
chg: cliparse should have atleast same file_max_path_len
This commit is contained in:
parent
cb614f3f11
commit
61be7c7c30
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue