Commit b7f3acf0 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winemac: Use a designated initializer to silence a compiler warning.

parent b46c60f4
......@@ -290,7 +290,7 @@ BOOL query_ime_char_rect(macdrv_query* query)
void *himc = query->ime_char_rect.data;
CFRange *range = &query->ime_char_rect.range;
CGRect *rect = &query->ime_char_rect.rect;
struct ime_query_char_rect_result result = {0};
struct ime_query_char_rect_result result = { .location = 0 };
struct ime_query_char_rect_params params;
BOOL ret;
......
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