diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 14:12:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 14:12:52 +0100 |
commit | 767b4c95bdb468429232a96242bd73b8e92d8660 (patch) | |
tree | 9e0fbc9cbe930cb66910fe7ff22c97f64de5f552 /src/pipe.c | |
parent | b48ae8c26fafe3e2bf8767a2fb7aa1779fe8abc4 (diff) | |
download | mpd-767b4c95bdb468429232a96242bd73b8e92d8660.tar.gz mpd-767b4c95bdb468429232a96242bd73b8e92d8660.tar.xz mpd-767b4c95bdb468429232a96242bd73b8e92d8660.zip |
renamed outputBuffer.[ch] to pipe.[ch]
No CamelCase in the file name. The output_buffer struct is going to
be renamed to music_pipe. There are so many buffer levels in MPD, and
calling this one "output buffer" is wrong, because it's not the last
buffer before the music reaches the output devices.
Diffstat (limited to '')
-rw-r--r-- | src/pipe.c (renamed from src/outputBuffer.c) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputBuffer.c b/src/pipe.c index 932ffd032..9b8683834 100644 --- a/src/outputBuffer.c +++ b/src/pipe.c @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "outputBuffer.h" +#include "pipe.h" #include "notify.h" #include "utils.h" |