Commit 650b9b01 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winemac: Fix LONG vs int mismatch.

parent 5e7b4bbe
......@@ -594,7 +594,7 @@ static void update_layout_list(void)
struct layout *layout;
int i;
if (!InterlockedExchange(&macdrv_layout_list_needs_update, FALSE)) return;
if (!InterlockedExchange((LONG *)&macdrv_layout_list_needs_update, FALSE)) return;
sources = macdrv_create_input_source_list();
......
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