From: Takashi Iwai Date: Tue, 4 May 2004 15:11:58 +0000 (+0000) Subject: avoid the compile warnings (about cast) with the recent GCC. X-Git-Tag: v1.0.5~14 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=253b58bc03e82968cd85ae63a6c95095e3f936f6;p=alsa-lib.git avoid the compile warnings (about cast) with the recent GCC. --- diff --git a/src/confmisc.c b/src/confmisc.c index c6fbe871..051b4758 100644 --- a/src/confmisc.c +++ b/src/confmisc.c @@ -865,6 +865,7 @@ int snd_func_private_pcm_subdevice(snd_config_t **dst, snd_config_t *root ATTRIB { snd_pcm_info_t *info; const char *id; + void *data; snd_pcm_t *pcm; int err; @@ -875,7 +876,8 @@ int snd_func_private_pcm_subdevice(snd_config_t **dst, snd_config_t *root ATTRIB SNDERR("field pcm_handle not found"); return -EINVAL; } - err = snd_config_get_pointer(private_data, (const void **)&pcm); + err = snd_config_get_pointer(private_data, &data); + pcm = data; if (err < 0) { SNDERR("field pcm_handle is not a pointer"); return err;