diff --git a/src/io.rs b/src/io.rs index 9753ae8..3cc97ee 100644 --- a/src/io.rs +++ b/src/io.rs @@ -247,7 +247,7 @@ impl BDFReader { /// Starts threads for decompressing chunks fn start_threads(&mut self) { - for _ in 0..(num_cpus::get() as f32/2f32).min(1f32) as usize { + for _ in 0..(num_cpus::get() as f32/2f32).max(1f32) as usize { thread::spawn({ let r = self.thread_manager.receiver_work.clone(); let s = self.thread_manager.sender_result.clone();