diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-01-22 15:26:56 -0500 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-24 11:40:21 +0100 |
commit | d2f0aac5ce6fc126c750e59c1a9c094ab9dc03e0 (patch) | |
tree | 4975ba0227c3a7e12055c9e5c744ea362085e63f /components/script/script_task.rs | |
parent | 1b496d80dec4f202e0f318ee60ac156ad74256ff (diff) | |
download | servo-d2f0aac5ce6fc126c750e59c1a9c094ab9dc03e0.tar.gz servo-d2f0aac5ce6fc126c750e59c1a9c094ab9dc03e0.zip |
Make UntrustedNodeAddress a newtype.
This will allow us to make it Send after the Rust upgrade.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 64ffedda065..6726c0e832e 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -1131,7 +1131,7 @@ impl ScriptTask { let page = get_page(&*self.page.borrow(), pipeline_id); match page.hit_test(&point) { Some(node_address) => { - debug!("node address is {}", node_address); + debug!("node address is {}", node_address.0); let temp_node = node::from_untrusted_node_address( |