diff options
author | Max Kellermann <max@duempel.org> | 2014-01-29 09:23:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-29 09:23:57 +0100 |
commit | af716057699c22cc3b553ee0e5bbd403b1478607 (patch) | |
tree | 7ef4e7f532ad8415a7e59dccbc211fcb9eb172cc /src/output/OutputControl.cxx | |
parent | 4657a3bd0fd97583e23cd65b80db71a71345fc13 (diff) | |
download | mpd-af716057699c22cc3b553ee0e5bbd403b1478607.tar.gz mpd-af716057699c22cc3b553ee0e5bbd403b1478607.tar.xz mpd-af716057699c22cc3b553ee0e5bbd403b1478607.zip |
output: rename "chunk" to "current_chunk"
Diffstat (limited to 'src/output/OutputControl.cxx')
-rw-r--r-- | src/output/OutputControl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/OutputControl.cxx b/src/output/OutputControl.cxx index 921369722..89428fa87 100644 --- a/src/output/OutputControl.cxx +++ b/src/output/OutputControl.cxx @@ -124,7 +124,7 @@ AudioOutput::Open(const AudioFormat audio_format, const MusicPipe &mp) assert(pipe == &mp || (always_on && pause)); if (pause) { - chunk = nullptr; + current_chunk = nullptr; pipe = ∓ /* unpause with the CANCEL command; this is a @@ -141,7 +141,7 @@ AudioOutput::Open(const AudioFormat audio_format, const MusicPipe &mp) } in_audio_format = audio_format; - chunk = nullptr; + current_chunk = nullptr; pipe = ∓ |