Skip to content

Commit 74cd6ae

Browse files
authored
Variable with a new name
1 parent a5b4bf1 commit 74cd6ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/runtime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,8 +549,8 @@ sqfs_err private_sqfs_stat(sqfs* fs, sqfs_inode* inode, struct stat* st) {
549549

550550
/* ================= End ELF parsing */
551551

552-
const char* fusermount_prog = getenv("FUSERMOUNT_PROG");
553-
if (fusermount_prog == NULL) {
552+
const char* fusermountPath = getenv("FUSERMOUNT_PROG");
553+
if (fusermountPath == NULL) {
554554
char* new_prog = find_fusermount();
555555
if (new_prog != NULL) {
556556
setenv("FUSERMOUNT_PROG", new_prog, 1);

0 commit comments

Comments
 (0)