diff options
author | Max Kellermann <max@duempel.org> | 2014-01-28 11:34:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-28 11:34:09 +0100 |
commit | 815d72065c1f2c690228e66b74b8a303cfe33fca (patch) | |
tree | 0c6698d1c3d3066036020a367531116cc8c334ce /src/output/OutputPrint.cxx | |
parent | e0dc721324f34d8b3803dce64545871aec42e537 (diff) | |
download | mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.tar.gz mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.tar.xz mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.zip |
output: rename struct audio_output to AudioOutput
Diffstat (limited to 'src/output/OutputPrint.cxx')
-rw-r--r-- | src/output/OutputPrint.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/OutputPrint.cxx b/src/output/OutputPrint.cxx index 7e0536bf5..b9fb79607 100644 --- a/src/output/OutputPrint.cxx +++ b/src/output/OutputPrint.cxx @@ -32,7 +32,7 @@ void printAudioDevices(Client &client, const MultipleOutputs &outputs) { for (unsigned i = 0, n = outputs.Size(); i != n; ++i) { - const audio_output &ao = outputs.Get(i); + const AudioOutput &ao = outputs.Get(i); client_printf(client, "outputid: %i\n" |