diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-14 19:33:52 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-14 19:33:52 +0000 |
commit | 2a65e8667ddae35a16fb4b62951b5be190be20c4 (patch) | |
tree | 2b9157ecf4d07ce0cef8fccd7bf83bda90161c5f /src | |
parent | 89464628c2d00e5a5fd91f5a42299fc90391b8f2 (diff) | |
download | mpd-2a65e8667ddae35a16fb4b62951b5be190be20c4.tar.gz mpd-2a65e8667ddae35a16fb4b62951b5be190be20c4.tar.xz mpd-2a65e8667ddae35a16fb4b62951b5be190be20c4.zip |
[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
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 2 | ||||
-rw-r--r-- | src/conf.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/conf.c b/src/conf.c index 6ada181c3..72cabfd78 100644 --- a/src/conf.c +++ b/src/conf.c @@ -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)) { diff --git a/src/conf.h b/src/conf.h index 1fcc47703..4eaa1f612 100644 --- a/src/conf.h +++ b/src/conf.h @@ -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); |