diff options
Diffstat (limited to 'src/output/oss_plugin.c')
-rw-r--r-- | src/output/oss_plugin.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/output/oss_plugin.c b/src/output/oss_plugin.c index cdab24fbd..f66280752 100644 --- a/src/output/oss_plugin.c +++ b/src/output/oss_plugin.c @@ -344,7 +344,7 @@ static bool oss_testDefault(void) return false; } -static void *oss_open_default(ConfigParam *param) +static void *oss_open_default(struct config_param *param) { int i; int err[G_N_ELEMENTS(default_devices)]; @@ -387,12 +387,13 @@ static void *oss_open_default(ConfigParam *param) return NULL; /* some compilers can be dumb... */ } -static void *oss_initDriver(G_GNUC_UNUSED struct audio_output *audioOutput, - G_GNUC_UNUSED const struct audio_format *audio_format, - ConfigParam * param) +static void * +oss_initDriver(G_GNUC_UNUSED struct audio_output *audioOutput, + G_GNUC_UNUSED const struct audio_format *audio_format, + struct config_param *param) { if (param) { - BlockParam *bp = getBlockParam(param, "device"); + struct block_param *bp = getBlockParam(param, "device"); if (bp) { OssData *od = newOssData(); od->device = bp->value; |