Skip to content

Commit

Permalink
Variable with a new name
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd authored Nov 24, 2024
1 parent a5b4bf1 commit 74cd6ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ sqfs_err private_sqfs_stat(sqfs* fs, sqfs_inode* inode, struct stat* st) {

/* ================= End ELF parsing */

const char* fusermount_prog = getenv("FUSERMOUNT_PROG");
if (fusermount_prog == NULL) {
const char* fusermountPath = getenv("FUSERMOUNT_PROG");
if (fusermountPath == NULL) {
char* new_prog = find_fusermount();
if (new_prog != NULL) {
setenv("FUSERMOUNT_PROG", new_prog, 1);
Expand Down

0 comments on commit 74cd6ae

Please sign in to comment.