tools/mksyscall: fix 106: Unexpected end of line: "FAR char * co"

line 106 exceeds the 256 character limit

106: Unexpected end of line: "FAR char * co"
make[1]: *** [makefile:108: .context] Error 4
make[1]: Leaving directory 'C:/nxtest/nuttx/syscall'
make: *** [tools/Win.mk:468: syscall\.context] Error 2

fixed tools/csvparser.h from

to

Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
simbit18 2025-03-07 11:16:23 +01:00 committed by archer
parent 9ab9b31682
commit 4877e33058

View File

@ -34,7 +34,7 @@
* Pre-processor Definitions
****************************************************************************/
#define LINESIZE (PATH_MAX > 256 ? PATH_MAX : 256)
#define LINESIZE (PATH_MAX > 512 ? PATH_MAX : 512)
#define MAX_FIELDS 16
#define MAX_PARMSIZE 256