Commit a3a12dff authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

powrprof: Win64 printf format warning fixes.

parent 6ef43211
......@@ -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
......
......@@ -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;
......
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