1
0
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:
Delyan Angelov
2021-10-01 13:49:38 +03:00
parent 6f7c3a7cdf
commit 41de0c3c6a
5 changed files with 28 additions and 22 deletions

View File

@@ -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++;\