From b59c761dafd03fd0432c4a7119144cfec4197a0e Mon Sep 17 00:00:00 2001 From: Gyorgy Szombathelyi Date: Thu, 18 Apr 2019 19:09:18 +0200 Subject: [PATCH] Increase ini line length to 90 --- ini_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ini_parser.c b/ini_parser.c index 43221e3..c74e66f 100644 --- a/ini_parser.c +++ b/ini_parser.c @@ -21,7 +21,7 @@ #define INI_EOT 4 // End-Of-Transmission #define INI_BUF_SIZE 512 -#define INI_LINE_SIZE 65 +#define INI_LINE_SIZE 90 #define INI_SECTION_START '[' #define INI_SECTION_END ']'