diff options
author | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
commit | 4d472c265ed0b3f7f61ee624c01c8ef319db7c99 (patch) | |
tree | 8ec3ea874c741c9b0e1ab70db2a96e02acec8225 /src/output/alsa_plugin.c | |
parent | 2bbf378dd8a3f12b4b79228ce562402c29d2cd09 (diff) | |
download | mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.gz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.xz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.zip |
conf: no CamelCase, part I
Renamed functions, types, variables.
Diffstat (limited to '')
-rw-r--r-- | src/output/alsa_plugin.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/output/alsa_plugin.c b/src/output/alsa_plugin.c index 58f549800..0645b34b4 100644 --- a/src/output/alsa_plugin.c +++ b/src/output/alsa_plugin.c @@ -88,9 +88,9 @@ static void freeAlsaData(AlsaData * ad) } static void -alsa_configure(AlsaData *ad, ConfigParam *param) +alsa_configure(AlsaData *ad, struct config_param *param) { - BlockParam *bp; + struct block_param *bp; if ((bp = getBlockParam(param, "device"))) ad->device = g_strdup(bp->value); @@ -119,9 +119,10 @@ alsa_configure(AlsaData *ad, ConfigParam *param) #endif } -static void *alsa_initDriver(G_GNUC_UNUSED struct audio_output *ao, - G_GNUC_UNUSED const struct audio_format *audio_format, - ConfigParam * param) +static void * +alsa_initDriver(G_GNUC_UNUSED struct audio_output *ao, + G_GNUC_UNUSED const struct audio_format *audio_format, + struct config_param *param) { /* no need for pthread_once thread-safety when reading config */ static int free_global_registered; |