Skip to content

Commit

Permalink
Or does C++ insist on a const char*?
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd authored Nov 24, 2024
1 parent 53f7f17 commit a5b4bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ sqfs_err private_sqfs_stat(sqfs* fs, sqfs_inode* inode, struct stat* st) {

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

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

0 comments on commit a5b4bf1

Please sign in to comment.