diff options
Diffstat (limited to 'components/util/time.rs')
-rw-r--r-- | components/util/time.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/time.rs b/components/util/time.rs index b5805dfa092..8165d316f9e 100644 --- a/components/util/time.rs +++ b/components/util/time.rs @@ -24,7 +24,7 @@ pub struct TimeProfilerChan(pub Sender<TimeProfilerMsg>); impl TimeProfilerChan { pub fn send(&self, msg: TimeProfilerMsg) { let TimeProfilerChan(ref c) = *self; - c.send(msg); + c.send(msg).unwrap(); } } |