Commit 7a9b36ca authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

kernel32: Fix typo of i386 macro name in GetLargePageMinimum().

parent 754c6818
......@@ -297,7 +297,7 @@ err:
*/
SIZE_T WINAPI GetLargePageMinimum(void)
{
#if defined(__i386___) || defined(__x86_64__) || defined(__arm__)
#if defined(__i386__) || defined(__x86_64__) || defined(__arm__)
return 2 * 1024 * 1024;
#endif
FIXME("Not implemented on your platform/architecture.\n");
......
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