Set number of cores = 1 due to suspected Cairo thread unsafety

This commit is contained in:
Patrick Walton 2012-11-09 19:22:23 -08:00
parent 0034e2d6be
commit f249396712

View file

@ -65,7 +65,7 @@ pub fn from_cmdline_args(args: &[~str]) -> Opts {
let n_render_threads: uint = match getopts::opt_maybe_str(move opt_match, ~"t") {
Some(move n_render_threads_str) => from_str::from_str(n_render_threads_str).get(),
None => 2, // FIXME: Number of cores.
None => 1, // FIXME: Number of cores.
};
Opts {