mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 21:01:53 +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
|
@ -618,7 +618,7 @@ _tmain(int argc, const TCHAR *argv[])
|
|||
OutputBuffer = HeapAlloc(GetProcessHeap(), 0, VolumeInfo.BytesPerFileRecordSegment + sizeof(NTFS_FILE_RECORD_OUTPUT_BUFFER));
|
||||
if (OutputBuffer == NULL)
|
||||
{
|
||||
_ftprintf(stderr, _T("Failed to allocate %x bytes\n"), VolumeInfo.BytesPerFileRecordSegment + sizeof(NTFS_FILE_RECORD_OUTPUT_BUFFER));
|
||||
_ftprintf(stderr, _T("Failed to allocate %Ix bytes\n"), VolumeInfo.BytesPerFileRecordSegment + sizeof(NTFS_FILE_RECORD_OUTPUT_BUFFER));
|
||||
CloseHandle(VolumeHandle);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue