diff options
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index 5394aa178f5..97ffc67f8d2 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -740,7 +740,7 @@ impl LayoutTask { } let (response_chan, response_port) = ipc::channel().unwrap(); - self.paint_chan.send(LayoutToPaintMsg::Exit(Some(response_chan), exit_type)).unwrap(); + self.paint_chan.send(LayoutToPaintMsg::Exit(response_chan, exit_type)).unwrap(); response_port.recv().unwrap() } |