aboutsummaryrefslogtreecommitdiffstats
path: root/src/conf.c
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2006-07-14 19:33:52 +0000
committerAvuton Olrich <avuton@gmail.com>2006-07-14 19:33:52 +0000
commit2a65e8667ddae35a16fb4b62951b5be190be20c4 (patch)
tree2b9157ecf4d07ce0cef8fccd7bf83bda90161c5f /src/conf.c
parent89464628c2d00e5a5fd91f5a42299fc90391b8f2 (diff)
downloadmpd-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.c2
1 files changed, 1 insertions, 1 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)) {