diff options
author | mio <[email protected]> | 2024-08-22 19:34:23 +1000 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-22 23:12:08 +0900 |
commit | bca2a1a170c5030aeb55b411fd64a4adf02e3434 (patch) | |
tree | 66769d4d979fffce4e2f64316df5dd81fa2de795 /src/part/xineEngine.cpp | |
parent | 55214aea7cf8d37849d1566535a4f13eb04f2528 (diff) | |
download | codeine-bca2a1a170c5030aeb55b411fd64a4adf02e3434.tar.gz codeine-bca2a1a170c5030aeb55b411fd64a4adf02e3434.zip |
Use nullptr instead of NULL/0 pointer in C++ files
See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73
Signed-off-by: mio <[email protected]>
(cherry picked from commit ed55bf072682ebf73239e74b7e3dd286ed5616a5)
Diffstat (limited to 'src/part/xineEngine.cpp')
-rw-r--r-- | src/part/xineEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/part/xineEngine.cpp b/src/part/xineEngine.cpp index 96108a7..f6bbf87 100644 --- a/src/part/xineEngine.cpp +++ b/src/part/xineEngine.cpp @@ -37,7 +37,7 @@ VideoWindow::init() m_videoPort = xine_open_video_driver( m_xine, "auto", XINE_VISUAL_TYPE_X11, x11Visual() ); debug() << "xine_open_audio_driver()\n"; - m_audioPort = xine_open_audio_driver( m_xine, "auto", NULL ); + m_audioPort = xine_open_audio_driver( m_xine, "auto", nullptr ); debug() << "xine_stream_new()\n"; m_stream = xine_stream_new( m_xine, m_audioPort, m_videoPort ); |