commit 1a670123c8051c6431567498c037c5df89fbcf51 from: Christian Weisgerber via: Thomas Adam date: Tue Sep 28 23:20:09 2021 UTC fix unsigned/signed char mismatch in parse.y ok stsp commit - dbaa2362d16467d001f75172d6b67a47da142049 commit + 1a670123c8051c6431567498c037c5df89fbcf51 blob - 80949f68d4cb084bcfc57b72d182891cd3c36c05 blob + 1299aa1f1d93a028f300b2553a699411d6083401 --- libexec/got-read-gotconfig/parse.y +++ libexec/got-read-gotconfig/parse.y @@ -504,10 +504,10 @@ parseport(char *port, long long *pn) int yylex(void) { - unsigned char buf[8096]; - unsigned char *p, *val; - int quotec, next, c; - int token; + char buf[8096]; + char *p, *val; + int quotec, next, c; + int token; top: p = buf;