diff --git a/llama-util.h b/llama-util.h index 06ee00194..75e19c50c 100644 --- a/llama-util.h +++ b/llama-util.h @@ -281,7 +281,7 @@ struct llama_mmap { hKernel32 = GetModuleHandleW(L"kernel32.dll"); // This call may fail if on a pre-Win8 system. - pPrefetchVirtualMemory = reinterpret_cast GetProcAddress(hKernel32, "PrefetchVirtualMemory"); + pPrefetchVirtualMemory = reinterpret_cast (GetProcAddress(hKernel32, "PrefetchVirtualMemory")); if (pPrefetchVirtualMemory) { // Advise the kernel to preload the mapped memory.