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>
oldstable
Nikolay Sivov 2016-01-07 17:09:47 +03:00 committed by Alexandre Julliard
parent d2307b1ffc
commit 37cdf65949
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ void WINAPI StopWatch_MarkJavaStop(LPCWSTR lpszEvent, HWND hWnd, DWORD dwReserve
*/
DWORD WINAPI GetPerfTime(void)
{
static LARGE_INTEGER iCounterFreq = { 0 };
static LARGE_INTEGER iCounterFreq = { {0} };
LARGE_INTEGER iCounter;
TRACE("()\n");