diff options
author | Max Kellermann <max@duempel.org> | 2014-12-24 22:11:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-24 22:18:47 +0100 |
commit | c5409d52f5d4edace90f81585fe0f07da64e0f5d (patch) | |
tree | 0b8cc1f2a699ab0cd3e62c2c212ea1e03e73b0a7 /src/output/Init.cxx | |
parent | 54fc8f0e8c4ba5bf3eca799eab03201fea099d14 (diff) | |
download | mpd-c5409d52f5d4edace90f81585fe0f07da64e0f5d.tar.gz mpd-c5409d52f5d4edace90f81585fe0f07da64e0f5d.tar.xz mpd-c5409d52f5d4edace90f81585fe0f07da64e0f5d.zip |
output/Internal: move enum AudioOutputCommand into the struct
Diffstat (limited to 'src/output/Init.cxx')
-rw-r--r-- | src/output/Init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/Init.cxx b/src/output/Init.cxx index fac6bb45e..f9648e0d4 100644 --- a/src/output/Init.cxx +++ b/src/output/Init.cxx @@ -58,7 +58,7 @@ AudioOutput::AudioOutput(const AudioOutputPlugin &_plugin) filter(nullptr), replay_gain_filter(nullptr), other_replay_gain_filter(nullptr), - command(AudioOutputCommand::NONE) + command(Command::NONE) { assert(plugin.finish != nullptr); assert(plugin.open != nullptr); |