mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 06:53:00 +00:00
[REACTOS] Fix MSVC printf format warnings
This commit is contained in:
parent
b8a1a612b2
commit
58588b76e2
17 changed files with 35 additions and 35 deletions
|
@ -21,7 +21,7 @@ int wmain(int argc, WCHAR * argv[])
|
|||
wsprintf(ServiceName.Buffer,
|
||||
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\%S",
|
||||
argv[1]);
|
||||
wprintf(L"%s %d %d\n", ServiceName.Buffer, ServiceName.Length, wcslen(ServiceName.Buffer));
|
||||
wprintf(L"%s %d %Ud\n", ServiceName.Buffer, ServiceName.Length, wcslen(ServiceName.Buffer));
|
||||
Status = NtUnloadDriver(&ServiceName);
|
||||
free(ServiceName.Buffer);
|
||||
if (!NT_SUCCESS(Status))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue