This is an automated email from the ASF dual-hosted git repository.

archer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 4877e33058 tools/mksyscall: fix 106: Unexpected end of line: "FAR char 
* co"
4877e33058 is described below

commit 4877e33058abaff84e05cf60560fa8c14cf7178c
Author: simbit18 <simbi...@gmail.com>
AuthorDate: Fri Mar 7 11:16:23 2025 +0100

    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 <simbi...@gmail.com>
---
 tools/csvparser.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/csvparser.h b/tools/csvparser.h
index 9b42b039e9..e749a21184 100644
--- a/tools/csvparser.h
+++ b/tools/csvparser.h
@@ -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

Reply via email to