diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-03-29 10:58:16 -0700 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-30 19:21:41 +0200 |
commit | 6405db931b8fdd9086f8a46a195dbc6d10b5171b (patch) | |
tree | 3d7f93efa21af0cdb14e85fc4345b47cbe41b6fc /src/conf.c | |
parent | 96ab110b44bf2f3445e15f5afcb80439b9da6242 (diff) | |
download | mpd-6405db931b8fdd9086f8a46a195dbc6d10b5171b.tar.gz mpd-6405db931b8fdd9086f8a46a195dbc6d10b5171b.tar.xz mpd-6405db931b8fdd9086f8a46a195dbc6d10b5171b.zip |
conf: config_param_free() not necessary for export.
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c index 260d2582f..6f3c9ace7 100644 --- a/src/conf.c +++ b/src/conf.c @@ -87,7 +87,7 @@ newConfigParam(const char *value, int line) return ret; } -void +static void config_param_free(gpointer data, G_GNUC_UNUSED gpointer user_data) { struct config_param *param = data; |