Commit dbfeb4b7 authored by Alexandre Julliard's avatar Alexandre Julliard

taskmgr: Use standard va_list instead of __ms_va_list.

parent b19d3e77
......@@ -188,8 +188,7 @@ static DWORD WINAPI PerformancePageRefreshThread(void *lpParameter)
args[0] = CommitChargeTotal;
args[1] = CommitChargeLimit;
FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY,
wszMemUsage, 0, 0, Text,
ARRAY_SIZE(Text), (__ms_va_list*)args);
wszMemUsage, 0, 0, Text, ARRAY_SIZE(Text), (va_list *)args);
SendMessageW(hStatusWnd, SB_SETTEXTW, 2, (LPARAM)Text);
/*
......
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