powrprof: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-05 22:05:43 +02:00 committed by Alexandre Julliard
parent 6ef43211b2
commit a3a12dff89
2 changed files with 6 additions and 7 deletions

View File

@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = powrprof.dll
IMPORTLIB = libpowrprof.$(IMPLIBEXT)
IMPORTS = advapi32 kernel32 ntdll
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = powrprof.c

View File

@ -81,7 +81,7 @@ BOOLEAN WINAPI CanUserWritePwrScheme(VOID)
r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szPowerCfgSubKey, 0, KEY_READ | KEY_WRITE, &hKey);
if (r != ERROR_SUCCESS) {
TRACE("RegOpenKeyEx failed: %ld\n", r);
TRACE("RegOpenKeyEx failed: %d\n", r);
bSuccess = FALSE;
}
@ -164,7 +164,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szPowerCfgSubKey, 0, KEY_READ, &hKey);
if (r != ERROR_SUCCESS) {
TRACE("RegOpenKeyEx failed: %ld\n", r);
TRACE("RegOpenKeyEx failed: %d\n", r);
TRACE("Using defaults: 3600, 3\n");
*RangeMax = 3600;
*RangeMin = 3;
@ -174,7 +174,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
r = RegQueryValueExW(hKey, szDiskMax, 0, 0, lpValue, &cbValue);
if (r != ERROR_SUCCESS) {
TRACE("Couldn't open DiskSpinDownMax: %ld\n", r);
TRACE("Couldn't open DiskSpinDownMax: %d\n", r);
TRACE("Using default: 3600\n");
*RangeMax = 3600;
} else {
@ -185,7 +185,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
r = RegQueryValueExW(hKey, szDiskMin, 0, 0, lpValue, &cbValue);
if (r != ERROR_SUCCESS) {
TRACE("Couldn't open DiskSpinDownMin: %ld\n", r);
TRACE("Couldn't open DiskSpinDownMin: %d\n", r);
TRACE("Using default: 3\n");
*RangeMin = 3;
} else {
@ -305,7 +305,7 @@ BOOLEAN WINAPI WritePwrScheme(PUINT puiID, LPWSTR lpszName, LPWSTR lpszDescripti
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
FIXME("(%p, %ld, %p) not fully implemented\n", hinstDLL, fdwReason, lpvReserved);
FIXME("(%p, %d, %p) not fully implemented\n", hinstDLL, fdwReason, lpvReserved);
switch(fdwReason) {
case DLL_PROCESS_ATTACH: {
@ -331,7 +331,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
PPRegSemaphore = CreateSemaphoreW(NULL, 1, 1, szSemaphoreName);
if (PPRegSemaphore == NULL) {
ERR("Couldn't create Semaphore: %ld\n", GetLastError());
ERR("Couldn't create Semaphore: %d\n", GetLastError());
return FALSE;
}
break;