remove hostile comment

This commit is contained in:
Mackenzie Clark 2019-02-27 17:20:01 -08:00
parent 56b263e829
commit d27a216eab

View File

@ -30,7 +30,7 @@ pub fn _execvp(ctx: &mut Ctx, command_name_offset: u32, argv_offset: u32) -> i32
})
.collect();
// push a nullptr on to the end of the args array, cuz C is terrible
// push a nullptr on to the end of the args array
argv.push(std::ptr::null());
// construct raw pointers and hand them to `execvp`