diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-04-13 16:09:48 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-04-13 16:09:48 -0500 |
commit | 8c0fa01884bfb4dcf7d591aa06f48f78f7970766 (patch) | |
tree | c648f5c8cd1d91c2b0866d848697469be32b2512 /components/layout/layout_thread.rs | |
parent | dfb482a2b7fdb570f34e9092384fa74a3e1b54e3 (diff) | |
download | servo-8c0fa01884bfb4dcf7d591aa06f48f78f7970766.tar.gz servo-8c0fa01884bfb4dcf7d591aa06f48f78f7970766.zip |
Added panic message to failures.
Diffstat (limited to 'components/layout/layout_thread.rs')
-rw-r--r-- | components/layout/layout_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs index f6f88a0f29b..9c184880ecd 100644 --- a/components/layout/layout_thread.rs +++ b/components/layout/layout_thread.rs @@ -286,7 +286,7 @@ impl LayoutThreadFactory for LayoutThread { } let _ = shutdown_chan.send(()); let _ = content_process_shutdown_chan.send(()); - }, ConstellationMsg::Failure(failure_msg), con_chan); + }, failure_msg, con_chan); } } |