diff options
author | Max Kellermann <max@duempel.org> | 2013-10-19 18:19:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-19 18:19:03 +0200 |
commit | 59f8144c50765189594d5932fc25869f9ea6e265 (patch) | |
tree | f460d9f46a99040dea402bcb3ad2d84a0e734285 /src/InputPlugin.hxx | |
parent | 5a7c931293b55a27c3f79c6951707a8d6e2a5f6c (diff) | |
download | mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.gz mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.xz mpd-59f8144c50765189594d5932fc25869f9ea6e265.zip |
*: use nullptr instead of NULL
Diffstat (limited to '')
-rw-r--r-- | src/InputPlugin.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/InputPlugin.hxx b/src/InputPlugin.hxx index 134207584..1a867b118 100644 --- a/src/InputPlugin.hxx +++ b/src/InputPlugin.hxx @@ -39,8 +39,6 @@ struct InputPlugin { /** * Global initialization. This method is called when MPD starts. * - * @param error_r location to store the error occurring, or - * NULL to ignore errors * @return true on success, false if the plugin should be * disabled */ @@ -67,7 +65,7 @@ struct InputPlugin { /** * Update the public attributes. Call before access. Can be - * NULL if the plugin always keeps its attributes up to date. + * nullptr if the plugin always keeps its attributes up to date. */ void (*update)(struct input_stream *is); |