Commit 70d17d39 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 6d4cdeb6
...@@ -2321,7 +2321,7 @@ NTSTATUS WINAPI NtQuerySystemInformation( ...@@ -2321,7 +2321,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
if ((fp = fopen("/proc/meminfo", "r"))) if ((fp = fopen("/proc/meminfo", "r")))
{ {
ULONG64 totalram, freeram, totalswap, freeswap; unsigned long long totalram, freeram, totalswap, freeswap;
char line[64]; char line[64];
while (fgets(line, sizeof(line), fp)) while (fgets(line, sizeof(line), fp))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment