aboutsummaryrefslogtreecommitdiffstats
path: root/src/OutputInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
committerMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
commit59f8144c50765189594d5932fc25869f9ea6e265 (patch)
treef460d9f46a99040dea402bcb3ad2d84a0e734285 /src/OutputInternal.hxx
parent5a7c931293b55a27c3f79c6951707a8d6e2a5f6c (diff)
downloadmpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.gz
mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.xz
mpd-59f8144c50765189594d5932fc25869f9ea6e265.zip
*: use nullptr instead of NULL
Diffstat (limited to 'src/OutputInternal.hxx')
-rw-r--r--src/OutputInternal.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/OutputInternal.hxx b/src/OutputInternal.hxx
index 6818dee14..db2c2b557 100644
--- a/src/OutputInternal.hxx
+++ b/src/OutputInternal.hxx
@@ -72,7 +72,7 @@ struct audio_output {
/**
* The #mixer object associated with this audio output device.
- * May be NULL if none is available, or if software volume is
+ * May be nullptr if none is available, or if software volume is
* configured.
*/
class Mixer *mixer;
@@ -127,7 +127,7 @@ struct audio_output {
bool allow_play;
/**
- * If not NULL, the device has failed, and this timer is used
+ * If not nullptr, the device has failed, and this timer is used
* to estimate how long it should stay disabled (unless
* explicitly reopened with "play").
*/
@@ -197,7 +197,7 @@ struct audio_output {
Filter *convert_filter;
/**
- * The thread handle, or NULL if the output thread isn't
+ * The thread handle, or nullptr if the output thread isn't
* running.
*/
Thread thread;