Commit f8829297 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

kernel32: Downgrade a FIXME to a WARN.

parent 3b8929b9
......@@ -2646,7 +2646,7 @@ DWORD WINAPI GetProcessVersion( DWORD processid )
BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
SIZE_T maxset)
{
FIXME("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
WARN("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
/* Trim the working set to zero */
/* Swap the process out of physical RAM */
......
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