diff options
author | Max Kellermann <max@duempel.org> | 2009-06-03 06:55:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-06-03 06:55:04 +0200 |
commit | ddc2694419442b68eac4c04069c991ecd2fa26ee (patch) | |
tree | 005978160f38610f7cb40f2b554dc85fb501a9c6 /src/volume.c | |
parent | 5c5d39b0124027fdd6ad035d784cbea97e7fecb7 (diff) | |
download | mpd-ddc2694419442b68eac4c04069c991ecd2fa26ee.tar.gz mpd-ddc2694419442b68eac4c04069c991ecd2fa26ee.tar.xz mpd-ddc2694419442b68eac4c04069c991ecd2fa26ee.zip |
conf: eliminated CamelCase
Renamed all remaining CamelCase functions.
Diffstat (limited to 'src/volume.c')
-rw-r--r-- | src/volume.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/volume.c b/src/volume.c index 9b1032294..e7fa20a62 100644 --- a/src/volume.c +++ b/src/volume.c @@ -111,20 +111,20 @@ mixer_copy_legacy_param(const char *type, const char *name) it does not match the mixer_type setting */ g_error("no '%s' audio output found", type); - output = newConfigParam(NULL, param->line); - addBlockParam(output, "type", type, param->line); - addBlockParam(output, "name", type, param->line); + output = config_new_param(NULL, param->line); + config_add_block_param(output, "type", type, param->line); + config_add_block_param(output, "name", type, param->line); config_add_param(CONF_AUDIO_OUTPUT, output); } - bp = getBlockParam(output, name); + bp = config_get_block_param(output, name); if (bp != NULL) g_error("the '%s' audio output already has a '%s' setting", type, name); /* duplicate the parameter in the configuration section */ - addBlockParam(output, name, param->value, param->line); + config_add_block_param(output, name, param->value, param->line); } static void |