Skip to content

Commit 1a62dad

Browse files
committed
Remove unnecessary clone
1 parent 57b457b commit 1a62dad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mod ffi {
3939
}
4040

4141
let (progress_tx, progress_rx) = mpsc::channel();
42-
spawn_recv_progress_thread(progress_rx, callback_fn.clone());
42+
spawn_recv_progress_thread(progress_rx, callback_fn);
4343

4444
notify(callback_fn, "booting", 0.0, 0, "");
4545
let app = App::boot(config, Some(progress_tx))?;

0 commit comments

Comments
 (0)