[REACTOS] Fix MSVC printf format warnings

This commit is contained in:
Timo Kreuzer 2018-08-20 17:42:27 +02:00
parent b8a1a612b2
commit 58588b76e2
17 changed files with 35 additions and 35 deletions

View file

@ -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;
}