aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2016-11-07 15:33:30 -0500
committerGitHub <noreply@github.com>2016-11-07 15:33:30 -0500
commitfd51bcb983115f3238f094db817cbdaf4eee372c (patch)
tree46a568ef9010d17e224f9526b3acd507d2ea4f93
parent04e2af0b222de22782c29eb0a20622e5717cd574 (diff)
downloadservo-fd51bcb983115f3238f094db817cbdaf4eee372c.tar.gz
servo-fd51bcb983115f3238f094db817cbdaf4eee372c.zip
Silently ignore errors sending time profiling data.
-rw-r--r--components/profile_traits/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/profile_traits/time.rs b/components/profile_traits/time.rs
index ec8a3617cd6..7068a7261e4 100644
--- a/components/profile_traits/time.rs
+++ b/components/profile_traits/time.rs
@@ -22,7 +22,7 @@ pub struct ProfilerChan(pub IpcSender<ProfilerMsg>);
impl ProfilerChan {
pub fn send(&self, msg: ProfilerMsg) {
- self.0.send(msg).unwrap();
+ let _ = self.0.send(msg);
}
}