diff options
author | Max Kellermann <max@duempel.org> | 2012-09-04 11:28:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-09-04 11:28:36 +0200 |
commit | 015e1ab183a248ce07f11775bc622c1018f365e9 (patch) | |
tree | 6157e47211dbecb859f3f8e4262db7423ea7f71f /src/decoder/flac_decoder_plugin.c | |
parent | 2a4c7994715f2b995b3ec7587f24eb0855209983 (diff) | |
download | mpd-015e1ab183a248ce07f11775bc622c1018f365e9.tar.gz mpd-015e1ab183a248ce07f11775bc622c1018f365e9.tar.xz mpd-015e1ab183a248ce07f11775bc622c1018f365e9.zip |
decoder/_ogg_common: rename to ogg_common.c
Diffstat (limited to 'src/decoder/flac_decoder_plugin.c')
-rw-r--r-- | src/decoder/flac_decoder_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/flac_decoder_plugin.c b/src/decoder/flac_decoder_plugin.c index fb0b3502d..818f75904 100644 --- a/src/decoder/flac_decoder_plugin.c +++ b/src/decoder/flac_decoder_plugin.c @@ -18,12 +18,12 @@ */ #include "config.h" /* must be first for large file support */ -#include "_flac_common.h" +#include "flac_common.h" #include "flac_compat.h" #include "flac_metadata.h" #if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7 -#include "_ogg_common.h" +#include "ogg_common.h" #endif #include <glib.h> |