diff options
Diffstat (limited to 'components/script/dom/gpubindgroup.rs')
-rw-r--r-- | components/script/dom/gpubindgroup.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/gpubindgroup.rs b/components/script/dom/gpubindgroup.rs index 5477cd3a2c1..2c4fa1bd2e8 100644 --- a/components/script/dom/gpubindgroup.rs +++ b/components/script/dom/gpubindgroup.rs @@ -73,7 +73,7 @@ impl Drop for GPUBindGroup { if let Err(e) = self .channel .0 - .send((None, WebGPURequest::DropBindGroup(self.bind_group.0))) + .send(WebGPURequest::DropBindGroup(self.bind_group.0)) { warn!( "Failed to send WebGPURequest::DropBindGroup({:?}) ({})", |