Set Ragel.rl char type to unsigned, #135

This commit is contained in:
Konstantinos Margaritis
2023-03-21 18:07:06 +00:00
parent 0f967b9575
commit dbdbfe9473
6 changed files with 6 additions and 2 deletions

View File

@@ -57,6 +57,7 @@ char unhex(const char *start, UNUSED const char *end) {
%%{
machine FileCorporaParser;
alphtype unsigned char;
action accumulateNum {
num = (num * 10) + (fc - '0');