We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5752b63 commit 0f89371Copy full SHA for 0f89371
src/libstd/sys/vxworks/process/process_vxworks.rs
@@ -55,8 +55,8 @@ impl Command {
55
56
let ret = rtp::rtpSpawn(
57
self.get_argv()[0], // executing program
58
- self.get_argv().as_ptr() as *const _, // argv
59
- *sys::os::environ() as *const *const c_char,
+ self.get_argv().as_ptr() as *mut *const c_char, // argv
+ *sys::os::environ() as *mut *const c_char,
60
100 as c_int, // initial priority
61
thread::min_stack(), // initial stack size.
62
0, // options
0 commit comments