map after inspecting to properly detect orphans

This commit is contained in:
Iris Lightshard 2022-06-17 00:05:56 -06:00
parent 9c13438562
commit eb1ab2eddf
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

2
main.c
View file

@ -674,7 +674,7 @@ int main(void) {
return error("Indexing", "Failed"); return error("Indexing", "Failed");
if (!generate(&lex)) if (!generate(&lex))
return error("Generating", "Failed"); return error("Generating", "Failed");
map(&lex);
inspect(&lex); inspect(&lex);
map(&lex);
return 0; return 0;
} }