winecoreaudio.drv: Don't use pointer constants with an integer type (Clang).
Signed-off-by: Charles Davis <cdavis5x@gmail.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f71f7db63c
commit
c8e87bd878
|
@ -29,10 +29,10 @@
|
||||||
|
|
||||||
MIDIClientRef CoreMIDI_CreateClient(CFStringRef name)
|
MIDIClientRef CoreMIDI_CreateClient(CFStringRef name)
|
||||||
{
|
{
|
||||||
MIDIClientRef client = NULL;
|
MIDIClientRef client = 0;
|
||||||
|
|
||||||
if (MIDIClientCreate(name, NULL /* FIXME use notify proc */, NULL, &client) != noErr)
|
if (MIDIClientCreate(name, NULL /* FIXME use notify proc */, NULL, &client) != noErr)
|
||||||
return NULL;
|
return 0;
|
||||||
|
|
||||||
return client;
|
return client;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue