Skip to content

Commit

Permalink
Forgot the conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Oct 2, 2023
1 parent 4a58e60 commit 4aba720
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2168,7 +2168,9 @@ std::pair<int, metadata> read_input(std::vector<source> &sources, char *fname, i
fclose(node_out);
}

fprintf(stderr, "Merging index \r");
if (!quiet) {
fprintf(stderr, "Merging index \r");
}

char indexname[strlen(tmpdir) + strlen("/index.XXXXXXXX") + 1];
snprintf(indexname, sizeof(indexname), "%s%s", tmpdir, "/index.XXXXXXXX");
Expand Down

0 comments on commit 4aba720

Please sign in to comment.