mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
directsoundsrc: Correctly cast mixer to uintptr
https://bugzilla.gnome.org/show_bug.cgi?id=773720
This commit is contained in:
parent
c2920ec3ea
commit
bd2fcc9571
1 changed files with 1 additions and 1 deletions
|
@ -818,7 +818,7 @@ gst_directsound_src_mixer_find (GstDirectSoundSrc * dsoundsrc,
|
|||
if (mmres != MMSYSERR_NOERROR)
|
||||
continue;
|
||||
|
||||
mmres = mixerGetDevCaps (GPOINTER_TO_UINT (dsoundsrc->mixer),
|
||||
mmres = mixerGetDevCaps ((UINT_PTR)dsoundsrc->mixer,
|
||||
mixer_caps, sizeof (MIXERCAPS));
|
||||
|
||||
if (mmres != MMSYSERR_NOERROR) {
|
||||
|
|
Loading…
Reference in a new issue