[CLEANUP] Remove function from header, static

it in the source

git-svn-id: https://svn.musicpd.org/mpd/trunk@4332 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Avuton Olrich 2006-07-14 19:33:52 +00:00
parent 89464628c2
commit 2a65e8667d
2 changed files with 1 additions and 3 deletions

View File

@ -99,7 +99,7 @@ void freeConfigEntry(ConfigEntry * entry) {
free(entry);
}
void registerConfigParam(char * name, int repeatable, int block) {
static void registerConfigParam(char * name, int repeatable, int block) {
ConfigEntry * entry;
if(findInList(configEntriesList, name, NULL)) {

View File

@ -85,8 +85,6 @@ ConfigParam * getNextConfigParam(char * name, ConfigParam * last);
char * getConfigParamValue(char * name);
void registerConfigParam(char * name, int repeats, int block);
BlockParam * getBlockParam(ConfigParam * param, char * name);
ConfigParam * parseConfigFilePath(char * name, int force);