mirror of
https://github.com/apache/nuttx.git
synced 2025-05-08 22:32:04 +08:00
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:
parent
9ab9b31682
commit
4877e33058
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user