From a531a1e65075d27574bc31d4bac7ab20cb750efd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 18 Jan 2009 19:37:27 +0100 Subject: conf: added config_get_block_string() This replaces lots of getBlockParam() invocations. --- src/mixer/alsa_mixer.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/mixer/alsa_mixer.c') diff --git a/src/mixer/alsa_mixer.c b/src/mixer/alsa_mixer.c index 72924058b..7dafd22cc 100644 --- a/src/mixer/alsa_mixer.c +++ b/src/mixer/alsa_mixer.c @@ -46,18 +46,21 @@ static void alsa_mixer_configure(struct mixer_data *data, struct config_param *param) { struct alsa_mixer *am = (struct alsa_mixer *)data; - struct block_param *bp; + const char *value; if (param == NULL) return; - if ((bp = getBlockParam(param, "mixer_device"))) { + value = config_get_block_string(param, "mixer_device", NULL); + if (value != NULL) { g_free(am->device); - am->device = g_strdup(bp->value); + am->device = g_strdup(value); } - if ((bp = getBlockParam(param, "mixer_control"))) { + + value = config_get_block_string(param, "mixer_control", NULL); + if (value != NULL) { g_free(am->control); - am->control = g_strdup(bp->value); + am->control = g_strdup(value); } } -- cgit v1.2.3