diff options
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index e0e451bc120..5dcf965aaa5 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -2201,7 +2201,7 @@ fn shut_down_layout(context_tree: &BrowsingContext) { let chan = window.layout_chan().clone(); if chan.send(message::Msg::PrepareToExit(response_chan)).is_ok() { channels.push(chan); - response_port.recv().unwrap(); + let _ = response_port.recv(); } } |