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:
Charles Davis 2016-02-19 15:48:08 -07:00 committed by Alexandre Julliard
parent f71f7db63c
commit c8e87bd878
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}