ntdll: Use the correct type for %llu scanf format.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-04-23 17:10:47 +02:00
parent 6d4cdeb658
commit 70d17d3929
1 changed files with 1 additions and 1 deletions

View File

@ -2321,7 +2321,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
if ((fp = fopen("/proc/meminfo", "r")))
{
ULONG64 totalram, freeram, totalswap, freeswap;
unsigned long long totalram, freeram, totalswap, freeswap;
char line[64];
while (fgets(line, sizeof(line), fp))
{