diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-01-10 21:33:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-11 17:13:01 +0100 |
commit | d357f585426d31b2b7e8efd3b92163b7b4f3c3f6 (patch) | |
tree | ab719858bf7ce0f6cd26ae077762c721f4145b4c /src/conf.c | |
parent | 983822ea525f0d48c8329513c846fe183bd0353f (diff) | |
download | mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.tar.gz mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.tar.xz mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.zip |
removing mixer_reconfigure memmory leak, fixing configure of alsa and oss mixer (passing parameters)
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 5bce0f029..1ae0520be 100644 --- a/src/conf.c +++ b/src/conf.c @@ -80,7 +80,7 @@ ConfigParam *newConfigParam(const char *value, int line) return ret; } -static void +void config_param_free(gpointer data, G_GNUC_UNUSED gpointer user_data) { ConfigParam *param = data; |