shlwapi: Fix initializer causing compiler warning.
Spotted by Józef. Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d2307b1ffc
commit
37cdf65949
|
@ -190,7 +190,7 @@ void WINAPI StopWatch_MarkJavaStop(LPCWSTR lpszEvent, HWND hWnd, DWORD dwReserve
|
||||||
*/
|
*/
|
||||||
DWORD WINAPI GetPerfTime(void)
|
DWORD WINAPI GetPerfTime(void)
|
||||||
{
|
{
|
||||||
static LARGE_INTEGER iCounterFreq = { 0 };
|
static LARGE_INTEGER iCounterFreq = { {0} };
|
||||||
LARGE_INTEGER iCounter;
|
LARGE_INTEGER iCounter;
|
||||||
|
|
||||||
TRACE("()\n");
|
TRACE("()\n");
|
||||||
|
|
Loading…
Reference in New Issue