mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
* remove warning
* return true in ValidatePowerPolicy svn path=/trunk/; revision=22367
This commit is contained in:
parent
cd64dfb6ea
commit
c2321de544
1 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
#include "powrprof.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "stdlib.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(powrprof);
|
||||
|
||||
|
@ -308,7 +309,7 @@ BOOLEAN WINAPI ValidatePowerPolicies(PGLOBAL_POWER_POLICY pGPP, PPOWER_POLICY pP
|
|||
/* FIXME: See note #3 */
|
||||
FIXME("(%p, %p) stub!\n", pGPP, pPP);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue