summaryrefslogtreecommitdiffstats
path: root/libao2
diff options
context:
space:
mode:
Diffstat (limited to 'libao2')
-rw-r--r--libao2/ao_alsa.c5
-rw-r--r--libao2/ao_dart.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/libao2/ao_alsa.c b/libao2/ao_alsa.c
index 7376c0f18d..ba49231b28 100644
--- a/libao2/ao_alsa.c
+++ b/libao2/ao_alsa.c
@@ -263,7 +263,8 @@ static void print_help (void)
MSGTR_AO_ALSA_CommandlineHelp);
}
-static int str_maxlen(strarg_t *str) {
+static int str_maxlen(void *strp) {
+ strarg_t *str = strp;
if (str->len > ALSA_DEVICE_SIZE)
return 0;
return 1;
@@ -328,7 +329,7 @@ static int init(int rate_hz, int channels, int format, int flags)
snd_pcm_uframes_t boundary;
const opt_t subopts[] = {
{"block", OPT_ARG_BOOL, &block, NULL},
- {"device", OPT_ARG_STR, &device, (opt_test_f)str_maxlen},
+ {"device", OPT_ARG_STR, &device, str_maxlen},
{NULL}
};
diff --git a/libao2/ao_dart.c b/libao2/ao_dart.c
index 58ee4d1886..e1df7d32f7 100644
--- a/libao2/ao_dart.c
+++ b/libao2/ao_dart.c
@@ -148,7 +148,7 @@ static int init(int rate, int channels, int format, int flags)
const opt_t subopts[] = {
{"share", OPT_ARG_BOOL, &fShare, NULL},
- {"bufsize", OPT_ARG_INT, &nDartSamples, (opt_test_f)int_non_neg},
+ {"bufsize", OPT_ARG_INT, &nDartSamples, int_non_neg},
{NULL}
};