mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix v -cc gcc -cstrict examples/pico/pico.v
This commit is contained in:
2
thirdparty/picohttpparser/picohttpparser.h
vendored
2
thirdparty/picohttpparser/picohttpparser.h
vendored
@@ -6,7 +6,7 @@ typedef struct phr_header phr_header_t;
|
||||
|
||||
#define ADVANCE_TOKEN2(buf, tok, toklen, max_len) \
|
||||
do {\
|
||||
for (int i = 0; i < max_len; i++) {\
|
||||
for (u32 i = 0; i < max_len; i++) {\
|
||||
if (buf[i] == ' ') {\
|
||||
tok = buf;\
|
||||
toklen = i++;\
|
||||
|
||||
Reference in New Issue
Block a user