mirror of
https://github.com/xorgy/mediafire-fuse
synced 2026-01-13 13:14:29 -08:00
add const qualifiers to some variables
This commit is contained in:
@@ -33,7 +33,7 @@ struct mfcmd {
|
||||
char *name;
|
||||
char *argstring;
|
||||
char *help;
|
||||
int (*handler) (mfshell * mfshell, int argc, char **argv);
|
||||
int (*handler) (mfshell * mfshell, int argc, char *const argv[]);
|
||||
};
|
||||
|
||||
struct mfshell {
|
||||
@@ -57,7 +57,7 @@ mfshell *mfshell_create(int app_id, char *app_key, char *server);
|
||||
|
||||
int mfshell_authenticate_user(mfshell * mfshell);
|
||||
|
||||
int mfshell_exec(mfshell * mfshell, int argc, char **argv);
|
||||
int mfshell_exec(mfshell * mfshell, int argc, char *const argv[]);
|
||||
|
||||
int mfshell_exec_shell_command(mfshell * mfshell, char *command);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user