tools/csvparser.h: Extend MAX_PARMSIZE to 256. Fixes this issue: 70: Parameter too long: ...

This commit is contained in:
Xiang Xiao 2018-11-08 07:36:02 -06:00 committed by Gregory Nutt
parent 6509a0c0ca
commit acb83cfc61
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@
#define LINESIZE (PATH_MAX > 256 ? PATH_MAX : 256)
#define MAX_FIELDS 16
#define MAX_PARMSIZE 128
#define MAX_PARMSIZE 256
#define NAME_INDEX 0
#define HEADER_INDEX 1
#define COND_INDEX 2