mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
kernel32: Add more tracing to GetDiskFreeSpaceW.
This commit is contained in:
parent
c9962bbb58
commit
729afb18fe
@ -1687,6 +1687,8 @@ BOOL WINAPI GetDiskFreeSpaceW( LPCWSTR root, LPDWORD cluster_sectors,
|
||||
if (sector_bytes) *sector_bytes = info.BytesPerSector;
|
||||
if (free_clusters) *free_clusters = info.AvailableAllocationUnits.u.LowPart;
|
||||
if (total_clusters) *total_clusters = info.TotalAllocationUnits.u.LowPart;
|
||||
TRACE("%#08x, %#08x, %#08x, %#08x\n", info.SectorsPerAllocationUnit, info.BytesPerSector,
|
||||
info.AvailableAllocationUnits.u.LowPart, info.TotalAllocationUnits.u.LowPart);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user