diff options
author | Max Kellermann <max@duempel.org> | 2013-01-10 10:15:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-10 10:15:09 +0100 |
commit | d5516dee005075a7569890c0cea4235659687ea1 (patch) | |
tree | 969046fc869f266103afc06bd2e8e1bd9c201d33 /src/InputInit.cxx | |
parent | 06e0741a5293b1db2ef5f2b5778e3669f2dea70e (diff) | |
download | mpd-d5516dee005075a7569890c0cea4235659687ea1.tar.gz mpd-d5516dee005075a7569890c0cea4235659687ea1.tar.xz mpd-d5516dee005075a7569890c0cea4235659687ea1.zip |
input_stream: convert to C++ (internally)
Diffstat (limited to '')
-rw-r--r-- | src/InputInit.cxx (renamed from src/input_init.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input_init.c b/src/InputInit.cxx index 771d648d1..6714cc727 100644 --- a/src/input_init.c +++ b/src/InputInit.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,9 +18,9 @@ */ #include "config.h" -#include "input_init.h" +#include "InputInit.hxx" +#include "InputRegistry.hxx" #include "input_plugin.h" -#include "input_registry.h" #include "conf.h" #include <assert.h> |