X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=lexer.c;h=66a0c451564a443aa62911fdd028ec0405f470a2;hb=6fc00e523d1c5678e40c9296b9e66fb6a6ee5bc7;hp=5c9b7ee6d145077acf25c24730a5e253be3631bd;hpb=f1a36ca6476e1a67d96d48ea7d9dcdc9f8c6f1d1;p=xonotic%2Fgmqcc.git diff --git a/lexer.c b/lexer.c index 5c9b7ee..66a0c45 100644 --- a/lexer.c +++ b/lexer.c @@ -441,7 +441,7 @@ static bool lex_try_pragma(lex_file *lex) goto unroll; } - for (ch = lex_getch(lex); vec_size(param) < 32 && ch != ')' && ch != '\n'; ch = lex_getch(lex)) + for (ch = lex_getch(lex); vec_size(param) < 1024 && ch != ')' && ch != '\n'; ch = lex_getch(lex)) vec_push(param, ch); vec_push(param, 0);