Commit c8e87bd8 authored by Charles Davis's avatar Charles Davis Committed by Alexandre Julliard

winecoreaudio.drv: Don't use pointer constants with an integer type (Clang).

parent f71f7db6
......@@ -29,10 +29,10 @@
MIDIClientRef CoreMIDI_CreateClient(CFStringRef name)
{
MIDIClientRef client = NULL;
MIDIClientRef client = 0;
if (MIDIClientCreate(name, NULL /* FIXME use notify proc */, NULL, &client) != noErr)
return NULL;
return 0;
return client;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment