Module: wine Branch: master Commit: f8829297dac380f754b1d613c4a0012cad28b29a URL: http://source.winehq.org/git/wine.git/?a=commit;h=f8829297dac380f754b1d613c4...
Author: Mike McCormack mike@codeweavers.com Date: Thu Nov 16 17:37:40 2006 +0900
kernel32: Downgrade a FIXME to a WARN.
---
dlls/kernel32/process.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c index 48c6787..4a55e0d 100644 --- a/dlls/kernel32/process.c +++ b/dlls/kernel32/process.c @@ -2646,7 +2646,7 @@ DWORD WINAPI GetProcessVersion( DWORD pr 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 */