Skip to content

Commit

Permalink
if (verbose) [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd authored Nov 24, 2024
1 parent b3993e2 commit 368393d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,8 @@ int main(int argc, char* argv[]) {
char* new_prog = find_fusermount();
if (new_prog != NULL) {
setenv("FUSERMOUNT_PROG", new_prog, 1);
// printf("FUSERMOUNT_PROG set to %s\n", new_prog);
if (verbose)
printf("FUSERMOUNT_PROG set to %s\n", new_prog);
free(new_prog);
} else {
printf("Error: No suitable fusermount binary found on the $PATH\n");
Expand Down

0 comments on commit 368393d

Please sign in to comment.