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 c329767954b..764a7c87a4f 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -2322,7 +2322,7 @@ impl ScriptThread { } fn handle_css_error_reporting(&self, pipeline_id: PipelineId, filename: String, - line: usize, column: usize, msg: String) { + line: u32, column: u32, msg: String) { let sender = match self.devtools_chan { Some(ref sender) => sender, None => return, |