diff options
author | Max Kellermann <max@duempel.org> | 2009-02-25 19:08:49 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-25 19:08:49 +0100 |
commit | ba4dd651ef67238a67046e93fb8dc0f6162fec6c (patch) | |
tree | e834a641655d8bbe739a376ee4a81a5ad71908ee /src/output_list.c | |
parent | 074d5ae13ef31ea015e73aee1d92ed49d59905a6 (diff) | |
download | mpd-ba4dd651ef67238a67046e93fb8dc0f6162fec6c.tar.gz mpd-ba4dd651ef67238a67046e93fb8dc0f6162fec6c.tar.xz mpd-ba4dd651ef67238a67046e93fb8dc0f6162fec6c.zip |
ao: no CamelCase
Renamed functions and variables.
Diffstat (limited to 'src/output_list.c')
-rw-r--r-- | src/output_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output_list.c b/src/output_list.c index 36ef5cd2c..d7b816e4f 100644 --- a/src/output_list.c +++ b/src/output_list.c @@ -24,7 +24,7 @@ extern const struct audio_output_plugin shoutPlugin; extern const struct audio_output_plugin null_output_plugin; extern const struct audio_output_plugin fifoPlugin; extern const struct audio_output_plugin alsaPlugin; -extern const struct audio_output_plugin aoPlugin; +extern const struct audio_output_plugin ao_output_plugin; extern const struct audio_output_plugin ossPlugin; extern const struct audio_output_plugin osxPlugin; extern const struct audio_output_plugin pulse_plugin; @@ -43,7 +43,7 @@ const struct audio_output_plugin *audio_output_plugins[] = { &alsaPlugin, #endif #ifdef HAVE_AO - &aoPlugin, + &ao_output_plugin, #endif #ifdef HAVE_OSS &ossPlugin, |