This commit is contained in:
dzaima 2021-05-15 14:38:26 +03:00
parent 721017f6c0
commit 6ae85d3f29

View File

@ -94,7 +94,7 @@ int main(int argc, char* argv[]) {
size_t gl = 0; size_t gl = 0;
getline(&ln, &gl, stdin); getline(&ln, &gl, stdin);
if (ln[0]==0 || ln[0]==10) break; if (ln[0]==0 || ln[0]==10) break;
Block* block = bqn_comp(fromUTF8(ln, strlen(ln)), replPath); Block* block = bqn_comp(fromUTF8(ln, strlen(ln)), inc(replPath));
free(ln); free(ln);
#ifdef TIME #ifdef TIME