advapi32: Don't use sizeof in traces to avoid printf format warnings.

This commit is contained in:
Alexandre Julliard 2006-06-13 14:09:02 +02:00
parent 82a404a077
commit 553bb2591f
1 changed files with 2 additions and 2 deletions

View File

@ -511,7 +511,7 @@ static BOOL service_get_status(HANDLE pipe, LPSERVICE_STATUS status)
r = ReadFile( pipe, status, sizeof *status, &count, NULL );
if (!r || count != sizeof *status)
ERR("service protocol error - failed to read pipe "
"r = %d count = %ld/%d!\n", r, count, sizeof *status);
"r = %d count = %ld!\n", r, count);
return r;
}
@ -534,7 +534,7 @@ static BOOL service_send_control(HANDLE pipe, DWORD dwControl, DWORD *result)
r = ReadFile(pipe, result, sizeof *result, &count, NULL);
if (!r || count != sizeof *result)
ERR("service protocol error - failed to read pipe "
"r = %d count = %ld/%d!\n", r, count, sizeof *result);
"r = %d count = %ld!\n", r, count);
return r;
}