diff options
author | Max Kellermann <max@duempel.org> | 2009-01-22 16:06:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-22 16:06:43 +0100 |
commit | e1707c7ba3b831e133f2206e0e9b6cf63be34512 (patch) | |
tree | 6c7c9f9cce41c92ffe37923fd74f5069501a0451 /src/output_list.c | |
parent | eefe97bdb1169b68b57284820ba699e1240d0b6f (diff) | |
download | mpd-e1707c7ba3b831e133f2206e0e9b6cf63be34512.tar.gz mpd-e1707c7ba3b831e133f2206e0e9b6cf63be34512.tar.xz mpd-e1707c7ba3b831e133f2206e0e9b6cf63be34512.zip |
null: 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 0f5540dd8..36ef5cd2c 100644 --- a/src/output_list.c +++ b/src/output_list.c @@ -21,7 +21,7 @@ #include "config.h" extern const struct audio_output_plugin shoutPlugin; -extern const struct audio_output_plugin nullPlugin; +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; @@ -35,7 +35,7 @@ const struct audio_output_plugin *audio_output_plugins[] = { #ifdef HAVE_SHOUT &shoutPlugin, #endif - &nullPlugin, + &null_output_plugin, #ifdef HAVE_FIFO &fifoPlugin, #endif |