diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-02-19 17:07:29 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-02-20 11:15:13 -0500 |
commit | 3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7 (patch) | |
tree | 7b3d43e2d5cb3d88a57b39cc07c550847cf69e83 /components/bluetooth/lib.rs | |
parent | 107a29121c8a0e21d03645dd07121b59b595ac93 (diff) | |
download | servo-3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7.tar.gz servo-3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7.zip |
Update ipc-channel and crossbeam-channel.
Diffstat (limited to 'components/bluetooth/lib.rs')
-rw-r--r-- | components/bluetooth/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/bluetooth/lib.rs b/components/bluetooth/lib.rs index 5c54860d9e3..f882d640679 100644 --- a/components/bluetooth/lib.rs +++ b/components/bluetooth/lib.rs @@ -407,7 +407,7 @@ impl BluetoothManager { match ipc_receiver.recv() { Ok(result) => result, Err(e) => { - warn!("Failed to receive files from embedder ({}).", e); + warn!("Failed to receive files from embedder ({:?}).", e); None }, } |