diff options
author | Nicky <nicky.dasmijn@posteo.nl> | 2024-04-21 18:53:44 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@posteo.nl> | 2024-04-21 18:53:44 +0200 |
commit | 12b4c782b288867d09547f55f0ca30d6e02bb4b8 (patch) | |
tree | 2ad1386bb012079889142eb13241476603b1c180 | |
parent | 19c6368991706d1bcb4a3b02e08cd70e1e6324c7 (diff) |
Replace NULL with nullptr
-rwxr-xr-x | indra/media_plugins/cef/linux/volume_catcher_pipewire.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/media_plugins/cef/linux/volume_catcher_pipewire.cpp b/indra/media_plugins/cef/linux/volume_catcher_pipewire.cpp index 027fdb77f6..8617468f17 100755 --- a/indra/media_plugins/cef/linux/volume_catcher_pipewire.cpp +++ b/indra/media_plugins/cef/linux/volume_catcher_pipewire.cpp @@ -90,9 +90,9 @@ void VolumeCatcherPipeWire::init() LL_DEBUGS() << "successfully got symbols" << LL_ENDL; - llpw_init(NULL, NULL); + llpw_init(nullptr, nullptr); - mThreadLoop = llpw_thread_loop_new("SL Plugin Volume Adjuster", NULL); + mThreadLoop = llpw_thread_loop_new("SL Plugin Volume Adjuster", nullptr); if (!mThreadLoop) return; @@ -101,13 +101,13 @@ void VolumeCatcherPipeWire::init() // std::lock_guard pwLock(*this); mContext = llpw_context_new( - llpw_thread_loop_get_loop(mThreadLoop), NULL, 0 + llpw_thread_loop_get_loop(mThreadLoop), nullptr, 0 ); if (!mContext) return; - mCore = llpw_context_connect(mContext, NULL, 0); + mCore = llpw_context_connect(mContext, nullptr, 0); if (!mCore) return; |