aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_task.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-01-01 21:49:19 +0100
committerMs2ger <ms2ger@gmail.com>2015-01-02 19:04:18 +0100
commitb51e83819dfc2fded3a10744b353338f75ccae4d (patch)
tree1edb2c5d81a53ef4e8d5717a2440599d7a3e0f53 /components/script/script_task.rs
parent141b5d038fad3c0c44a6f1b309b8ca9edea54580 (diff)
downloadservo-b51e83819dfc2fded3a10744b353338f75ccae4d.tar.gz
servo-b51e83819dfc2fded3a10744b353338f75ccae4d.zip
Fix obsolete format traits.
They are to be removed from the language in the next rust upgrade.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r--components/script/script_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs
index 918d776c59f..3e482435888 100644
--- a/components/script/script_task.rs
+++ b/components/script/script_task.rs
@@ -1139,7 +1139,7 @@ impl ScriptTask {
match maybe_node {
Some(el) => {
let node = NodeCast::from_ref(el);
- debug!("clicked on {:s}", node.debug_str());
+ debug!("clicked on {}", node.debug_str());
// Prevent click event if form control element is disabled.
if node.click_event_filter_by_disabled_state() { return; }
match *page.frame() {