From 74cd6ae4267558e48d8addb1904c8897d9f26a3f Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 24 Nov 2024 10:53:50 +0100 Subject: [PATCH] Variable with a new name --- src/runtime/runtime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 70b6150..2a90558 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -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);