Commit d1040304 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dwrite: Fix compilation on systems that don't support nameless unions.

parent eaf4f695
......@@ -2120,8 +2120,8 @@ static HRESULT WINAPI localfontfilestream_GetLastWriteTime(IDWriteFontFileStream
TRACE("(%p)->(%p)\n", This, last_writetime);
li.LowPart = This->entry->key->writetime.dwLowDateTime;
li.HighPart = This->entry->key->writetime.dwHighDateTime;
li.u.LowPart = This->entry->key->writetime.dwLowDateTime;
li.u.HighPart = This->entry->key->writetime.dwHighDateTime;
*last_writetime = li.QuadPart;
return S_OK;
......
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