diff options
author | Max Kellermann <max@duempel.org> | 2014-01-24 16:18:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-24 16:33:33 +0100 |
commit | f8bfea8bae44134e8002db869fd4ec137d1c0d6e (patch) | |
tree | d370391baccbbc4c23306656aec3751a7ffc95ae /src/CommandLine.cxx | |
parent | e199c33c6e9eb2f1aa588073f49f44de274985d5 (diff) | |
download | mpd-f8bfea8bae44134e8002db869fd4ec137d1c0d6e.tar.gz mpd-f8bfea8bae44134e8002db869fd4ec137d1c0d6e.tar.xz mpd-f8bfea8bae44134e8002db869fd4ec137d1c0d6e.zip |
Input*: move to input/
Diffstat (limited to 'src/CommandLine.cxx')
-rw-r--r-- | src/CommandLine.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx index 3659dfcda..2b386f5de 100644 --- a/src/CommandLine.cxx +++ b/src/CommandLine.cxx @@ -29,8 +29,8 @@ #include "decoder/DecoderPlugin.hxx" #include "output/OutputList.hxx" #include "output/OutputPlugin.hxx" -#include "InputRegistry.hxx" -#include "InputPlugin.hxx" +#include "input/Registry.hxx" +#include "input/InputPlugin.hxx" #include "playlist/PlaylistRegistry.hxx" #include "playlist/PlaylistPlugin.hxx" #include "fs/AllocatedPath.hxx" @@ -148,7 +148,7 @@ static void version(void) #endif puts("\n" - "Input plugins:"); + "input/Input plugins:"); input_plugins_for_each(plugin) printf(" %s", plugin->name); |