1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 18:29:45 +02:00

Make librespot_playback work

This commit is contained in:
johannesd3 2021-01-22 22:51:41 +01:00
parent 6c9d8c8d83
commit fe37186804
4 changed files with 64 additions and 66 deletions

View file

@ -4,7 +4,7 @@ use std::io::{self, Write};
use std::mem;
use std::slice;
pub struct StdoutSink(Box<dyn Write>);
pub struct StdoutSink(Box<dyn Write + Send>);
impl Open for StdoutSink {
fn open(path: Option<String>) -> StdoutSink {