aboutsummaryrefslogtreecommitdiffstats
path: root/src/FilterInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-28 23:58:17 +0100
committerMax Kellermann <max@duempel.org>2013-10-28 23:58:17 +0100
commit20597b3632d3b6e25ba532716106f90d5b64d0e8 (patch)
treefa6dabaff127150caf3cf4723257f15ef2c3e0f8 /src/FilterInternal.hxx
parent4728735acf20fba24d0d03ab431160e250325869 (diff)
downloadmpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.tar.gz
mpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.tar.xz
mpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.zip
*: use nullptr instead of NULL
Diffstat (limited to 'src/FilterInternal.hxx')
-rw-r--r--src/FilterInternal.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FilterInternal.hxx b/src/FilterInternal.hxx
index ab648af1e..e2884e82f 100644
--- a/src/FilterInternal.hxx
+++ b/src/FilterInternal.hxx
@@ -41,7 +41,7 @@ public:
* @param audio_format the audio format of incoming data; the
* plugin may modify the object to enforce another input
* format
- * @param error location to store the error occurring, or NULL
+ * @param error location to store the error occurring, or nullptr
* to ignore errors.
* @return the format of outgoing data or
* AudioFormat::Undefined() on error
@@ -60,10 +60,10 @@ public:
* @param src the input buffer
* @param src_size the size of #src_buffer in bytes
* @param dest_size_r the size of the returned buffer
- * @param error location to store the error occurring, or NULL
+ * @param error location to store the error occurring, or nullptr
* to ignore errors.
* @return the destination buffer on success (will be
- * invalidated by filter_close() or filter_filter()), NULL on
+ * invalidated by filter_close() or filter_filter()), nullptr on
* error
*/
virtual const void *FilterPCM(const void *src, size_t src_size,