fix warnings in cmdline.c

This commit is contained in:
IntelOrca 2015-12-14 14:45:54 +00:00
parent 8bfde1f948
commit de48ad3af6
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ int cmdline_run(const char **argv, int argc)
* a null pointer in the array. Because of this, AppKit in OS X 10.10 will
* dereference it, causing a segmentation fault.
*/
const char** mutableArgv = malloc(argvsize);
char** mutableArgv = malloc(argvsize);
memcpy(mutableArgv,argv,argvsize);
argc = argparse_parse(&argparse, argc, mutableArgv);