diff options
author | Max Kellermann <max@duempel.org> | 2009-02-25 16:44:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-25 16:44:06 +0100 |
commit | 6823217697043e3ad2c1e67e4bba759c66d18a4f (patch) | |
tree | 2c947ebe3c0bdfab76ce67873eaa1570bc6a4674 /src/decoder | |
parent | 7957fefc91d2148fb2733f01ceaadf78d6844f1f (diff) | |
download | mpd-6823217697043e3ad2c1e67e4bba759c66d18a4f.tar.gz mpd-6823217697043e3ad2c1e67e4bba759c66d18a4f.tar.xz mpd-6823217697043e3ad2c1e67e4bba759c66d18a4f.zip |
ls: moved generic URI utilities to uri.c
"ls" is a bad name for a library which parses URIs. We'll move the
rest of the "ls" library later.
Diffstat (limited to '')
-rw-r--r-- | src/decoder/vorbis_plugin.c | 2 | ||||
-rw-r--r-- | src/decoder_thread.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/vorbis_plugin.c b/src/decoder/vorbis_plugin.c index 982165783..5d1611c97 100644 --- a/src/decoder/vorbis_plugin.c +++ b/src/decoder/vorbis_plugin.c @@ -20,7 +20,7 @@ #include "_ogg_common.h" #include "config.h" -#include "ls.h" +#include "uri.h" #ifndef HAVE_TREMOR #include <vorbis/vorbisfile.h> diff --git a/src/decoder_thread.c b/src/decoder_thread.c index 5aa13efc0..b35683e6e 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -30,7 +30,7 @@ #include "mapper.h" #include "path.h" #include "log.h" -#include "ls.h" +#include "uri.h" #include <glib.h> |