modify INI_MAX_LINE from 200 to 2048 in lib/ff_ini_parser.h.

This commit is contained in:
fengbojiang 2024-08-28 11:50:12 +08:00
parent 9fd8e44b49
commit 238513c034
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ int ini_parse_stream(ini_reader reader, void* stream, ini_handler handler,
/* Maximum line length for any line in INI file. */ /* Maximum line length for any line in INI file. */
#ifndef INI_MAX_LINE #ifndef INI_MAX_LINE
#define INI_MAX_LINE 200 #define INI_MAX_LINE 2048
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus