Skip to content

Commit

Permalink
Fix some build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ferjm committed Aug 13, 2019
1 parent cc378d7 commit b1ae3b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -14,4 +14,4 @@ members = [
"streams",
"webrtc"
]
license = "MPL-2.0"

2 changes: 1 addition & 1 deletion examples/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"

[dependencies]
euclid = { version = "0.19.0", optional = true }
failure = { version = "0.1", opional = true }
failure = { version = "0.1", optional = true }
failure_derive = { version = "0.1", optional = true }
gleam = { version = "0.6.8", optional = true }
hyper = { version = "0.12", optional = true }
Expand Down
4 changes: 1 addition & 3 deletions examples/player/app.rs
Expand Up @@ -185,9 +185,8 @@ impl App {
}
};

let client_context_id = servo_media::ClientContextId::build(1, 1);
let player = servo_media.create_player(
&client_context_id,
&servo_media::ClientContextId::build(1, 1),
player::StreamType::Seekable,
player_event_sender,
renderer,
Expand All @@ -208,7 +207,6 @@ impl App {
player,
file,
player_event_receiver,
client_context_id,
frame_renderer,
})
}
Expand Down

0 comments on commit b1ae3b3

Please sign in to comment.