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

Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Akihiro Sagawa 2016-06-19 22:08:11 +09:00 committed by Alexandre Julliard
parent 754c681826
commit 7a9b36ca11
1 changed files with 1 additions and 1 deletions

View File

@ -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");