Fix Android argument handling

Copy-paste fail from my c277d25506
This commit is contained in:
Keegan McAllister 2014-03-03 13:44:26 -08:00
parent 411892484b
commit d97d20a1df

View file

@ -131,7 +131,7 @@ pub extern "C" fn android_start(argc: int, argv: **u8) -> int {
args.push(str::raw::from_c_str(*argv.offset(i as int) as *i8));
}
}
opts::from_cmdline_args(os::args()).map(run);
opts::from_cmdline_args(args).map(run);
})
}