mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-30 10:15:36 +01:00
fix warnings in cmdline.c
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user