* remove warning

* return true in ValidatePowerPolicy

svn path=/trunk/; revision=22367
This commit is contained in:
Johannes Anderwald 2006-06-15 14:36:17 +00:00
parent cd64dfb6ea
commit c2321de544

View file

@ -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;
}