Commit 3c86adab authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

winemac: Cast buffer to const WCHAR* in insert_clipboard_format.

parent 12164532
...@@ -288,7 +288,7 @@ static WINE_CLIPFORMAT *insert_clipboard_format(UINT id, CFStringRef type) ...@@ -288,7 +288,7 @@ static WINE_CLIPFORMAT *insert_clipboard_format(UINT id, CFStringRef type)
} }
format->type = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@%S"), format->type = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@%S"),
registered_name_type_prefix, buffer); registered_name_type_prefix, (const WCHAR*)buffer);
} }
list_add_tail(&format_list, &format->entry); list_add_tail(&format_list, &format->entry);
......
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