Skip to content

Commit

Permalink
Remove const declaration to avoid compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark committed Jan 30, 2024
1 parent 3b4387e commit 8349d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuse/commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ static char *fsname_escape_commas(char *fsnameold)
static void * start_fuse_thread(void * other)
{
int fuseargc=0;
const char *fuseargv[200];
char *fuseargv[200];
#define mountstring_len (AFP_SERVER_NAME_LEN+1+AFP_VOLUME_NAME_LEN+1)
char mountstring[mountstring_len];
struct start_fuse_thread_arg * arg = other;
Expand Down

0 comments on commit 8349d64

Please sign in to comment.