diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-09-12 07:42:09 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-09-12 07:42:09 +0200 |
commit | 4a498b722fc85a3f9f67da29b4569daabe6bf20f (patch) | |
tree | bbf145bf3414125f0cee7fbfb067299c15320f7a /dom/media/GraphDriver.cpp | |
parent | ee6c0b343f77e1fc1d39dbd620c42bcf1598fd2b (diff) | |
download | aura-central-4a498b722fc85a3f9f67da29b4569daabe6bf20f.tar.gz |
Fix clang build bustage.
Follow-up to 9830cd079d8306abc223461190553af64b6fd0ca
Diffstat (limited to 'dom/media/GraphDriver.cpp')
-rw-r--r-- | dom/media/GraphDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/media/GraphDriver.cpp b/dom/media/GraphDriver.cpp index e77268131..47762c56e 100644 --- a/dom/media/GraphDriver.cpp +++ b/dom/media/GraphDriver.cpp @@ -761,7 +761,7 @@ AudioCallbackDriver::Destroy() void AudioCallbackDriver::Resume() { - STREAM_LOG(LogLevel::Debug, ("Resuming audio threads for MediaStreamGraph %p", mGraphImpl)); + STREAM_LOG(LogLevel::Debug, ("Resuming audio threads for MediaStreamGraph %p", mGraphImpl.get())); if (cubeb_stream_start(mAudioStream) != CUBEB_OK) { NS_WARNING("Could not start cubeb stream for MSG."); } |